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