SyncStack
SyncStack
A container for the synchronized state of a Stack
| Name | Type | Description |
|---|---|---|
| syncToken | String | You can use the sync_token later to perform subsequent sync, which fetches only new changes through delta updates. |
| paginationToken | string | If there are more than 100 records, you get a pagination_token in response. This token can be used to fetch the next batch of data. |
| totalCount | Int | The total number of resources which matched the original request. |
| items | [Any] | The resources which are part of the array response. |
init(syncToken:paginationToken:)
Initialization method for the SyncStack.
| Name | Type | Description |
|---|---|---|
| syncToken | String | The syncToken from the previous syncronization. |
| paginationToken | String | The paginationToken to fetch next batch of data. |