application - v0.1.0
    Preparing search index...

    Interface GatewayReponse

    interface GatewayReponse {
        id?: string;
        status: PaymentStatus;
        charges?: PaiementCharge[];
        error?: PaiementErreur;
        refund?: { status: "refunded"; transaction_id: string };
    }
    Index

    Properties

    id?: string
    charges?: PaiementCharge[]
    refund?: { status: "refunded"; transaction_id: string }