You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "Retrieve accounting type response",
4
+
"type": "object",
5
+
"properties": {
6
+
"periodsOfAccount": {
7
+
"type": "boolean",
8
+
"description": "Indicates whether the customer has periods of account.\n\nIf this value is true then periodsOfAccountDates must be submitted.",
9
+
"example": true
10
+
},
11
+
"periodsOfAccountDates": {
12
+
"type": "array",
13
+
"description": "List of periods of account. These will be returned if a customer has submitted periods of account.\n\nIf periodsOfAccount is set to false, then this value will not be returned.",
14
+
"items": {
15
+
"type": "object",
16
+
"properties": {
17
+
"startDate": {
18
+
"type": "string",
19
+
"description": "The start date of the period of account.",
20
+
"example": "2024-01-01"
21
+
},
22
+
"endDate": {
23
+
"type": "string",
24
+
"description": "The end date of the period of account.",
0 commit comments