interface OptionalFieldMeta {
    cursor?: string;
    hasMore?: boolean;
}

Hierarchy

  • Record<string, unknown>
    • OptionalFieldMeta

Properties

Properties

cursor?: string

A token that can be used in the query parameter of the endpoint returned in the _links property to retrieve the next set of results.

hasMore?: boolean

Indicates if there are more available results that can be fetched.