We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Below is the sample Hyperwallet payment response
{ "token" : "pmt-XXX", "status" : "COMPLETED", "createdOn" : "2020-05-27T07:08:20", "amount" : "2.00", "currency" : "USD", "clientPaymentId" : "XXX", "purpose" : "OTHER", "expiresOn" : "2020-08-25T07:08:20", "destinationToken" : "XXX", "programToken" : "XXX", "links" : [ { "params" : { "rel" : "self" }, "href" : "https://api.hyperwallet.com/rest/v4/payments/pmt-XXX" } ] }
The status parameter is missing in the HyperwalletPayment pojo.
status
HyperwalletPayment
Without the status parameter clients will not be able to map or read the status of the payment programatically.
The text was updated successfully, but these errors were encountered:
Added status param to HyperwalletPayment pojo
8caaaf5
- Details availabele at hyperwallet#50
No branches or pull requests
Below is the sample Hyperwallet payment response
{ "token" : "pmt-XXX", "status" : "COMPLETED", "createdOn" : "2020-05-27T07:08:20", "amount" : "2.00", "currency" : "USD", "clientPaymentId" : "XXX", "purpose" : "OTHER", "expiresOn" : "2020-08-25T07:08:20", "destinationToken" : "XXX", "programToken" : "XXX", "links" : [ { "params" : { "rel" : "self" }, "href" : "https://api.hyperwallet.com/rest/v4/payments/pmt-XXX" } ] }
The
status
parameter is missing in theHyperwalletPayment
pojo.Without the status parameter clients will not be able to map or read the status of the payment programatically.
The text was updated successfully, but these errors were encountered: