An invoice credit card transaction.
Property | Description |
---|---|
amount |
The amount for which this transactoin was made. |
created read-only |
The date on which this transaction was logged in the system. |
currencyCode |
Identifies the currency in which this transaction was made. |
id |
The identifier for this invoice credit card transaction. |
invoiceId |
Invoice identifier to which this credit card transaction relates. |
invoicePaymentId nullable |
Invoice payment identifier to which this credit card transaction relates. |
maskedCreditCardNumber read-only |
The masked credit card number used for this invoice credit card transaction. |
result |
The slug string of the result of this invoice credit card transaction. |
type |
The type of object represented. |
The following schema is based on OpenAPI 3.0 and is provided in our downloadable OpenAPI document.
{
"description": "An invoice credit card transaction.",
"properties": {
"amount": {
"description": "The amount for which this transactoin was made.",
"type": "number"
},
"created": {
"description": "The date on which this transaction was logged in the system.",
"format": "date-time",
"readOnly": true,
"type": "string"
},
"currencyCode": {
"description": "Identifies the currency in which this transaction was made.",
"type": "string"
},
"id": {
"description": "The identifier for this invoice credit card transaction.",
"type": "integer"
},
"invoiceId": {
"description": "Invoice identifier to which this credit card transaction relates.",
"type": "integer"
},
"invoicePaymentId": {
"description": "Invoice payment identifier to which this credit card transaction\nrelates.",
"nullable": true,
"type": "integer"
},
"maskedCreditCardNumber": {
"description": "The masked credit card number used for this invoice credit card\ntransaction.",
"readOnly": true,
"type": "string"
},
"result": {
"description": "The slug string of the result of this invoice credit card transaction.",
"enum": [
"approved",
"declined"
],
"type": "string"
},
"type": {
"description": "The type of object represented.",
"enum": [
"invoice-credit-card-transaction"
],
"type": "string"
}
},
"title": "Credit Card Transaction for Invoice",
"type": "object"
}