@sumup/sdk
    Preparing search index...

    Type Alias ListTransactionsQueryParams

    type ListTransactionsQueryParams = {
        changes_since?: string;
        limit?: number;
        newest_ref?: string;
        newest_time?: string;
        oldest_ref?: string;
        oldest_time?: string;
        order?: "ascending" | "descending";
        payment_types?: (
            "CASH"
            | "POS"
            | "ECOM"
            | "BALANCE"
            | "MOTO"
            | "BOLETO"
            | "UNKNOWN"
        )[];
        statuses?: (
            "SUCCESSFUL"
            | "CANCELLED"
            | "FAILED"
            | "REFUNDED"
            | "CHARGE_BACK"
        )[];
        transaction_code?: string;
        types?: ("PAYMENT" | "REFUND" | "CHARGE_BACK")[];
        users?: string[];
    }
    Index

    Properties

    changes_since?: string
    limit?: number
    newest_ref?: string
    newest_time?: string
    oldest_ref?: string
    oldest_time?: string
    order?: "ascending" | "descending"
    payment_types?: (
        "CASH"
        | "POS"
        | "ECOM"
        | "BALANCE"
        | "MOTO"
        | "BOLETO"
        | "UNKNOWN"
    )[]
    statuses?: ("SUCCESSFUL" | "CANCELLED" | "FAILED" | "REFUNDED" | "CHARGE_BACK")[]
    transaction_code?: string
    types?: ("PAYMENT" | "REFUND" | "CHARGE_BACK")[]
    users?: string[]