wallee
Version:
TypeScript/JavaScript client for wallee
24 lines (23 loc) • 797 B
TypeScript
import { AbstractTransactionInvoiceCommentActive } from "./AbstractTransactionInvoiceCommentActive";
declare class TransactionInvoiceCommentActive extends AbstractTransactionInvoiceCommentActive {
/**
* The ID is the primary key of the entity. The ID identifies the entity uniquely.
*/
'id': number;
/**
* The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
*/
'version': number;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}
export { TransactionInvoiceCommentActive };