Mayson Monorepo Documentation
    Preparing search index...

    A container for paginated lists of objects. The array of objects is on the .data property, and .has_more indicates whether there are additional objects beyond the end of this list.

    Learn more in Stripe's pagination docs or, when iterating over many items, try auto-pagination instead.

    interface ApiList<T> {
        object: "list";
        data: T[];
        has_more: boolean;
        url: string;
    }

    Type Parameters

    • T
    Index

    Properties

    Properties

    object: "list"
    data: T[]
    has_more: boolean

    True if this list has another page of items after this one that can be fetched.

    url: string

    The URL where this list can be accessed.