UNPKG

wallee

Version:
59 lines (58 loc) 1.45 kB
import { ChargeFlowLevelConfiguration } from "./ChargeFlowLevelConfiguration"; import { ChargeFlowLevelState } from "./ChargeFlowLevelState"; import { Transaction } from "./Transaction"; import { TransactionAwareEntity } from "./TransactionAwareEntity"; declare class ChargeFlowLevel extends TransactionAwareEntity { /** * */ 'asynchronousCharge'?: number; /** * */ 'configuration'?: ChargeFlowLevelConfiguration; /** * The date and time when the object was created. */ 'createdOn'?: Date; /** * The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed. */ 'plannedPurgeDate'?: Date; /** * The object's current state. */ 'state'?: ChargeFlowLevelState; /** * */ 'synchronousCharge'?: number; /** * */ 'timeoutOn'?: Date; /** * */ 'tokenCharge'?: number; /** * */ 'transaction'?: Transaction; /** * The version is used for optimistic locking and incremented whenever the object is updated. */ 'version'?: number; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export { ChargeFlowLevel };