Typescript SDK Type Docs
    Preparing search index...

    Interface Transaction

    Information for the request to the Connector to initiate the payment for a specific Cart.

    interface Transaction {
        application: ApplicationReference;
        cart?: CartReference;
        createdAt: string;
        id: string;
        key?: string;
        lastModifiedAt: string;
        order?: OrderReference;
        transactionItems: TransactionItem[];
        transactionStatus: TransactionStatus;
        version: number;
    }
    Index

    Properties

    Application for which the payment must be executed.

    Reference to the Cart for which the payment must be executed.

    createdAt: string

    Date and time (UTC) the Transaction was initially created.

    id: string

    Unique identifier of the Transaction.

    key?: string

    User-defined unique identifier of the Transaction.

    lastModifiedAt: string

    Date and time (UTC) the Transaction was last updated.

    Reference to the Order created from the Cart when the Transaction is completed.

    transactionItems: TransactionItem[]

    Transaction Item associated with the Transaction.

    transactionStatus: TransactionStatus

    Status of the Transaction.

    version: number

    Current version of the Transaction.