addedOutput schema / properties / payment / anyOf
Added value: +[
+ {
+ "properties": {
+ "amountCents": {
+ "type": "string"
+ },
+ "companyId": {
+ "anyOf": [
+ {
+ "description": "UUID value wrapper.",
+ "properties": {
+ "value": {
+ "format": "uuid",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "createdAt": {
+ "anyOf": [
+ {
+ "format": "date-time",
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "currency": {
+ "type": "string"
+ },
+ "description": {
+ "type": "string"
+ },
+ "destinationAccountId": {
+ "anyOf": [
+ {
+ "description": "UUID value wrapper.",
+ "properties": {
+ "value": {
+ "format": "uuid",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "id": {
+ "anyOf": [
+ {
+ "description": "UUID value wrapper.",
+ "properties": {
+ "value": {
+ "format": "uuid",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "initiatedAt": {
+ "anyOf": [
+ {
+ "format": "date-time",
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "providerReference": {
+ "type": "string"
+ },
+ "settledAt": {
+ "anyOf": [
+ {
+ "format": "date-time",
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "sourceAccountId": {
+ "anyOf": [
+ {
+ "description": "UUID value wrapper.",
+ "properties": {
+ "value": {
+ "format": "uuid",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "status": {
+ "enum": [
+ "PAYMENT_STATUS_UNSPECIFIED",
+ "PAYMENT_STATUS_PENDING",
+ "PAYMENT_STATUS_SETTLED",
+ "PAYMENT_STATUS_FAILED",
+ "PAYMENT_STATUS_CANCELLED"
+ ],
+ "type": "string"
+ },
+ "type": {
+ "enum": [
+ "PAYMENT_TYPE_UNSPECIFIED",
+ "PAYMENT_TYPE_TRANSFER",
+ "PAYMENT_TYPE_DEPOSIT",
+ "PAYMENT_TYPE_WITHDRAWAL"
+ ],
+ "type": "string"
+ }
+ },
+ "required": [
+ "companyId"
+ ],
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+]
removedOutput schema / properties / payment / properties
Removed value: -{
- "amountCents": {
- "type": "string"
- },
- "companyId": {
- "description": "UUID value wrapper.",
- "properties": {
- "value": {
- "format": "uuid",
- "type": "string"
- }
- },
- "type": "object"
- },
- "createdAt": {
- "format": "date-time",
- "type": "string"
- },
- "currency": {
- "type": "string"
- },
- "description": {
- "type": "string"
- },
- "destinationAccountId": {
- "description": "UUID value wrapper.",
- "properties": {
- "value": {
- "format": "uuid",
- "type": "string"
- }
- },
- "type": "object"
- },
- "id": {
- "description": "UUID value wrapper.",
- "properties": {
- "value": {
- "format": "uuid",
- "type": "string"
- }
- },
- "type": "object"
- },
- "initiatedAt": {
- "format": "date-time",
- "type": "string"
- },
- "providerReference": {
- "type": "string"
- },
- "settledAt": {
- "format": "date-time",
- "type": "string"
- },
- "sourceAccountId": {
- "description": "UUID value wrapper.",
- "properties": {
- "value": {
- "format": "uuid",
- "type": "string"
- }
- },
- "type": "object"
- },
- "status": {
- "enum": [
- "PAYMENT_STATUS_UNSPECIFIED",
- "PAYMENT_STATUS_PENDING",
- "PAYMENT_STATUS_SETTLED",
- "PAYMENT_STATUS_FAILED",
- "PAYMENT_STATUS_CANCELLED"
- ],
- "type": "string"
- },
- "type": {
- "enum": [
- "PAYMENT_TYPE_UNSPECIFIED",
- "PAYMENT_TYPE_TRANSFER",
- "PAYMENT_TYPE_DEPOSIT",
- "PAYMENT_TYPE_WITHDRAWAL"
- ],
- "type": "string"
- }
-}