wallee
Version:
TypeScript/JavaScript client for wallee
41 lines (40 loc) • 1.09 kB
TypeScript
import { ConnectorInvocationStage } from "./ConnectorInvocationStage";
import { TransactionAwareEntity } from "./TransactionAwareEntity";
declare class ConnectorInvocation extends TransactionAwareEntity {
/**
* 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;
/**
*
*/
'stage'?: ConnectorInvocationStage;
/**
*
*/
'timeTookInMilliseconds'?: number;
/**
*
*/
'transaction'?: number;
/**
* 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 { ConnectorInvocation };