UNPKG

wallee

Version:
54 lines (53 loc) 1.33 kB
import { InstallmentPaymentState } from "./InstallmentPaymentState"; import { LineItem } from "./LineItem"; import { Transaction } from "./Transaction"; declare class InstallmentPayment { /** * The date and time when the object was created. */ 'createdOn'?: Date; /** * A unique identifier for the object. */ 'id'?: number; /** * */ 'initialTransaction'?: Transaction; /** * */ 'lineItems'?: Array<LineItem>; /** * The ID of the space this object belongs to. */ 'linkedSpaceId'?: number; /** * */ 'planConfiguration'?: number; /** * 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'?: InstallmentPaymentState; /** * 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 { InstallmentPayment };