Interface UpcomingChangesResponseSchema

Export

UpcomingChangesResponseSchema

interface UpcomingChangesResponseSchema {
    hasMore: boolean;
    nextCursor: string;
    result: UpcomingChangeSet[];
}

Properties

hasMore: boolean

Whether there are more results to be loaded.

Memberof

UpcomingChangesResponseSchema

nextCursor: string

Cursor value to pass to get next set of the results. An empty string if "hasMore" is "false".

Memberof

UpcomingChangesResponseSchema

Array of the results matched with the query.

Memberof

UpcomingChangesResponseSchema

Generated using TypeDoc