aboutsummaryrefslogtreecommitdiff
path: root/request.go
AgeCommit message (Collapse)Author
2023-03-23all: replace golangci-lint with reviveShulhan
The golangci-lint is become unusable when building with Go tip and their default run does not return any results. This changes fix all code and comments reported by revive.
2023-01-31all: add prefix Disburse to UserID, Email, and ApiKey in ClientOptionsShulhan
This is to differentiate options between Merchant and Disbursement.
2022-11-07all: changes the UserID in ClientOptions from string to int64Shulhan
The type in request is always be an int.
2022-11-04all: export the request and response typesShulhan
This is to make documentation for the type that embed those types more clear.
2022-11-04all: implement API for online transfer inquiryShulhan
The RtolInquiry method get the information of the name of the account owner of the transfer destination. After getting this information, customers can determine whether the purpose of such a transfer is in accordance with the intended or not. If appropriate, the customer can proceed to the transfer process. Ref: https://docs.duitku.com/disbursement/en/#transfer-online
2022-10-31all: realign all structShulhan
This is to minimize the memory usage. In the response struct we remove unused Data field.
2022-10-19duitku: library and HTTP client for duitku.comShulhan
Currently, the client provide API for fetching list of banks for disbursement. See https://docs.duitku.com/ for reference.