wallee
Version:
TypeScript/JavaScript client for wallee
106 lines (105 loc) • 2.01 kB
TypeScript
import { InvoiceReimbursementState } from "./InvoiceReimbursementState";
import { PaymentConnectorConfiguration } from "./PaymentConnectorConfiguration";
import { PaymentInitiationAdviceFile } from "./PaymentInitiationAdviceFile";
declare class InvoiceReimbursement {
/**
*
*/
'amount'?: number;
/**
* The date and time when the object was created.
*/
'createdOn'?: Date;
/**
*
*/
'currency'?: string;
/**
*
*/
'discardedBy'?: number;
/**
*
*/
'discardedOn'?: Date;
/**
* A unique identifier for the object.
*/
'id'?: number;
/**
* The ID of the space this object belongs to.
*/
'linkedSpaceId'?: number;
/**
*
*/
'paymentConnectorConfiguration'?: PaymentConnectorConfiguration;
/**
*
*/
'paymentInitiationAdviceFile'?: PaymentInitiationAdviceFile;
/**
*
*/
'processedBy'?: number;
/**
*
*/
'processedOn'?: Date;
/**
*
*/
'recipientCity'?: string;
/**
*
*/
'recipientCountry'?: string;
/**
*
*/
'recipientFamilyName'?: string;
/**
*
*/
'recipientGivenName'?: string;
/**
*
*/
'recipientIban'?: string;
/**
*
*/
'recipientOrganizationName'?: string;
/**
*
*/
'recipientPostcode'?: string;
/**
*
*/
'recipientStreet'?: string;
/**
*
*/
'senderIban'?: string;
/**
* The object's current state.
*/
'state'?: InvoiceReimbursementState;
/**
* 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 { InvoiceReimbursement };