wallee
Version:
TypeScript/JavaScript client for wallee
52 lines (51 loc) • 1.4 kB
TypeScript
import { InstallmentPayment } from "./InstallmentPayment";
import { InstallmentPaymentSliceState } from "./InstallmentPaymentSliceState";
import { LineItem } from "./LineItem";
import { Transaction } from "./Transaction";
import { TransactionAwareEntity } from "./TransactionAwareEntity";
declare class InstallmentPaymentSlice extends TransactionAwareEntity {
/**
*
*/
'chargeOn'?: Date;
/**
* The date and time when the object was created.
*/
'createdOn'?: Date;
/**
*
*/
'installmentPayment'?: InstallmentPayment;
/**
*
*/
'lineItems'?: Array<LineItem>;
/**
* 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'?: InstallmentPaymentSliceState;
/**
*
*/
'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 { InstallmentPaymentSlice };