aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-11-07all: implement client API for Clearing TransferShulhan
The ClearingTransfer method do the clearing transfer using request and response from Clearing Inquiry.
2022-11-07all: changes the UserID in ClientOptions from string to int64Shulhan
The type in request is always be an int.
2022-11-07all: implement client API for Clearing InquiryShulhan
The ClearingInquiry method is used to initiate the transfer for Clearing using LLG, RTGS, H2H, or BI-FAST.
2022-11-07all: remove prefix Disbursement from Client methodsShulhan
Since most methods are call to disbursement methods, adding Disbursement in the method names not only make it longer but sligtly redundant.
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 to do online transferShulhan
The RtolTransfer do the actual transfer to customer's bank account using the request and response from RtolInquiry.
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-31all: implement HTTP API checkBalance for disbursementShulhan
The DisbursementCheckBalance return the current and effective user's balance.
2022-10-26all: export the HTTP pathShulhan
This is to make the consumer of the module able to mock the endpoint using the known path.
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.