wallee
Version:
TypeScript/JavaScript client for wallee
27 lines (26 loc) • 578 B
TypeScript
declare class TransactionAwareEntity {
/**
* A unique identifier for the object.
*/
'id'?: number;
/**
* The ID of the space this object belongs to.
*/
'linkedSpaceId'?: number;
/**
*
*/
'linkedTransaction'?: number;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}
export { TransactionAwareEntity };