This object defines the paging structure that includes the previous and next pagination tokens.

MatterSpecification.v13.Cluster § 6.6.5.12

interface ChannelPaging {
    nextToken?: null | TypeFromFields<{
        after: OptionalFieldType<string>;
        before: OptionalFieldType<string>;
        limit: OptionalFieldType<number>;
    }>;
    previousToken?: null | TypeFromFields<{
        after: OptionalFieldType<string>;
        before: OptionalFieldType<string>;
        limit: OptionalFieldType<number>;
    }>;
}

Hierarchy (view full)

Properties

nextToken?: null | TypeFromFields<{
    after: OptionalFieldType<string>;
    before: OptionalFieldType<string>;
    limit: OptionalFieldType<number>;
}> = ...

This field shall indicate the token to retrieve the next page. Absence of this field denotes the response as the last page.

MatterSpecification.v13.Cluster § 6.6.5.12.2

previousToken?: null | TypeFromFields<{
    after: OptionalFieldType<string>;
    before: OptionalFieldType<string>;
    limit: OptionalFieldType<number>;
}> = ...

This field shall indicate the token to retrieve the preceding page. Absence of this field denotes the response as the initial page.

MatterSpecification.v13.Cluster § 6.6.5.12.1