Mayson Monorepo Documentation
    Preparing search index...

    As a card issuer, you can dispute transactions that the cardholder does not recognize, suspects to be fraudulent, or has other issues with.

    Related guide: Issuing disputes

    interface Dispute {
        id: string;
        object: "issuing.dispute";
        amount: number;
        balance_transactions?: Stripe.BalanceTransaction[];
        created: number;
        currency: string;
        evidence: Stripe.Issuing.Dispute.Evidence;
        livemode: boolean;
        loss_reason?: LossReason;
        metadata: Metadata;
        status: Stripe.Issuing.Dispute.Status;
        transaction: string | Stripe.Issuing.Transaction;
        treasury?: Stripe.Issuing.Dispute.Treasury;
    }
    Index

    Properties

    id: string

    Unique identifier for the object.

    object: "issuing.dispute"

    String representing the object's type. Objects of the same type share the same value.

    amount: number

    Disputed amount in the card's currency and in the smallest currency unit. Usually the amount of the transaction, but can differ (usually because of currency fluctuation).

    balance_transactions?: Stripe.BalanceTransaction[]

    List of balance transactions associated with the dispute.

    created: number

    Time at which the object was created. Measured in seconds since the Unix epoch.

    currency: string

    The currency the transaction was made in.

    livemode: boolean

    Has the value true if the object exists in live mode or the value false if the object exists in test mode.

    loss_reason?: LossReason

    The enum that describes the dispute loss outcome. If the dispute is not lost, this field will be absent. New enum values may be added in the future, so be sure to handle unknown values.

    metadata: Metadata

    Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.

    Current status of the dispute.

    transaction: string | Stripe.Issuing.Transaction

    The transaction being disputed.

    Treasury details related to this dispute if it was created on a [FinancialAccount](/docs/api/treasury/financial_accounts