wallee
Version:
TypeScript/JavaScript client for wallee
63 lines (62 loc) • 1.46 kB
TypeScript
import { DeliveryIndicationDecisionReason } from "./DeliveryIndicationDecisionReason";
import { DeliveryIndicationState } from "./DeliveryIndicationState";
import { Transaction } from "./Transaction";
import { TransactionAwareEntity } from "./TransactionAwareEntity";
declare class DeliveryIndication extends TransactionAwareEntity {
/**
*
*/
'automaticDecisionReason'?: DeliveryIndicationDecisionReason;
/**
*
*/
'automaticallyDecidedOn'?: Date;
/**
*
*/
'completion'?: number;
/**
* The date and time when the object was created.
*/
'createdOn'?: Date;
/**
*
*/
'manualDecisionTimeoutOn'?: Date;
/**
*
*/
'manuallyDecidedBy'?: number;
/**
*
*/
'manuallyDecidedOn'?: 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'?: DeliveryIndicationState;
/**
*
*/
'timeoutOn'?: Date;
/**
*
*/
'transaction'?: Transaction;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}
export { DeliveryIndication };