wallee
Version:
TypeScript/JavaScript client for wallee
57 lines (56 loc) • 1.31 kB
TypeScript
import { PaymentInitiationAdviceFileState } from "./PaymentInitiationAdviceFileState";
import { PaymentProcessor } from "./PaymentProcessor";
declare class PaymentInitiationAdviceFile {
/**
* The created on date indicates the date on which the entity was stored into the database.
*/
'createdOn'?: Date;
/**
*
*/
'failureMessage'?: string;
/**
*
*/
'fileGeneratedOn'?: Date;
/**
* The shipping date indicates the date on which the pain file was transferred to an external processing system.
*/
'forwardedOn'?: Date;
/**
* A unique identifier for the object.
*/
'id'?: number;
/**
* The ID of the space this object belongs to.
*/
'linkedSpaceId'?: number;
/**
*
*/
'name'?: string;
/**
*
*/
'processedOn'?: Date;
/**
*
*/
'processor'?: PaymentProcessor;
/**
* The object's current state.
*/
'state'?: PaymentInitiationAdviceFileState;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}
export { PaymentInitiationAdviceFile };