wallee
Version:
TypeScript/JavaScript client for wallee
41 lines (40 loc) • 949 B
TypeScript
import { InvoiceReconciliationRecord } from "./InvoiceReconciliationRecord";
import { TransactionInvoice } from "./TransactionInvoice";
declare class InvoiceReconciliationRecordInvoiceLink {
/**
*
*/
'amount'?: number;
/**
* The date and time when the object was created.
*/
'createdOn'?: Date;
/**
* A unique identifier for the object.
*/
'id'?: number;
/**
*
*/
'invoice'?: TransactionInvoice;
/**
* The ID of the space this object belongs to.
*/
'linkedSpaceId'?: number;
/**
*
*/
'record'?: InvoiceReconciliationRecord;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}
export { InvoiceReconciliationRecordInvoiceLink };