SyncStack

View as Markdown

SyncStack

A container for the synchronized state of a Stack

NameTypeDescription
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.

NameTypeDescription
syncTokenString

The syncToken from the previous syncronization.

paginationTokenString

The paginationToken to fetch next batch of data.