UNPKG

@adyen/api-library

Version:

The Adyen API Library for NodeJS enables you to work with Adyen APIs.

47 lines (46 loc) 1.44 kB
import { StoredValueAccountStatus } from "./storedValueAccountStatus"; import { StoredValueTransactionType } from "./storedValueTransactionType"; import { TransactionIDType } from "./transactionIDType"; /** * For each stored value card loaded or reloaded, in the StoredValue response message. Result of loading/reloading a stored value card. */ export declare class StoredValueResult { "StoredValueTransactionType": StoredValueTransactionType; /** * Product code of item purchased with the transaction. Copy. */ "ProductCode"?: number; /** * Standard product code of item purchased with the transaction. Copy. */ "EanUpc"?: number; /** * Total amount of the item line. */ "ItemAmount"?: number; /** * Currency of a monetary amount. Copy. */ "Currency"?: string; "StoredValueAccountStatus"?: StoredValueAccountStatus | null; "HostTransactionID"?: TransactionIDType | null; static readonly discriminator: string | undefined; static readonly mapping: { [index: string]: string; } | undefined; static readonly attributeTypeMap: Array<{ name: string; baseName: string; type: string; format: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; format: string; }[]; constructor(); } export declare namespace StoredValueResult { }