interface CustomerDeposit {
    accountId: string;
    action?: DepositAction;
    amount: number;
    creationTime: string;
    currencyCode: string;
    customerId: string;
    deviceInfo?: DeviceInfo;
    expirationTime?: string;
    fee?: number;
    fundingTransactionId?: string;
    id: string;
    merchantRefNum?: string;
    nextStatus?: PaymentStatus[];
    paymentInstrumentReference?: PaymentInstrumentReference;
    paymentOption: PaymentOptionType;
    paymentProperties?: PaymentProperty[];
    redirectUrl?: RedirectLink;
    returnUrls?: ReturnLink[];
    slipId?: string;
    status: PaymentStatus;
    statusReason?: string;
}

Properties

accountId: string
action?: DepositAction
amount: number
creationTime: string
currencyCode: string
customerId: string
deviceInfo?: DeviceInfo
expirationTime?: string
fee?: number
fundingTransactionId?: string
id: string
merchantRefNum?: string
nextStatus?: PaymentStatus[]
paymentInstrumentReference?: PaymentInstrumentReference
paymentOption: PaymentOptionType
paymentProperties?: PaymentProperty[]
redirectUrl?: RedirectLink
returnUrls?: ReturnLink[]
slipId?: string
statusReason?: string

Generated using TypeDoc