connect-sdk-nodejs
Version:
SDK to communicate with the Worldline Global Collect platform using the Worldline Connect Server API
47 lines (46 loc) • 992 B
JSON
{
"$schema" : "http://json-schema.org/draft-04/schema#",
"type" : "object",
"properties" : {
"bin" : {
"type" : "string"
},
"paymentContext" : {
"$ref" : "#/definitions/PaymentContext"
}
},
"additionalProperties" : false,
"definitions" : {
"AmountOfMoney" : {
"type" : "object",
"properties" : {
"amount" : {
"type" : "integer",
"maximum" : 9223372036854775807
},
"currencyCode" : {
"type" : "string"
}
},
"additionalProperties" : false
},
"PaymentContext" : {
"type" : "object",
"properties" : {
"amountOfMoney" : {
"$ref" : "#/definitions/AmountOfMoney"
},
"countryCode" : {
"type" : "string"
},
"isInstallments" : {
"type" : "boolean"
},
"isRecurring" : {
"type" : "boolean"
}
},
"additionalProperties" : false
}
}
}