@izak0s/spacebring-api - v7.1.0
    Preparing search index...

    Interface GetMoneyTransactionsQuery

    Query parameters for sb.transactions.money.list().

    interface GetMoneyTransactionsQuery {
        locationRef: string;
        limit?: number;
        status?: "canceled" | "failed" | "pending" | "processing" | "succeeded";
        type?:
            | "creditPackage"
            | "booking"
            | "eventTicket"
            | "subscription"
            | "order"
            | "invoice";
        createDate?: { lte?: string; gte?: string };
        nextPageToken?: string;
    }
    Index
    locationRef: string

    The id of the location

    limit?: number

    The number of items to return

    status?: "canceled" | "failed" | "pending" | "processing" | "succeeded"

    The payment status of transactions

    type?:
        | "creditPackage"
        | "booking"
        | "eventTicket"
        | "subscription"
        | "order"
        | "invoice"

    The type of transactions

    createDate?: { lte?: string; gte?: string }

    The date filter of items.

    nextPageToken?: string

    Token to retrieve the next page of results.