wallee
Version:
TypeScript/JavaScript client for wallee
28 lines (27 loc) • 1.12 kB
TypeScript
/**
*
* @export
* @interface TransactionCommentActive
*/
export interface TransactionCommentActive {
/**
* The comment's actual content.
* @type {string}
* @memberof TransactionCommentActive
*/
content?: string;
/**
* The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
* @type {number}
* @memberof TransactionCommentActive
*/
version: number;
}
/**
* Check if a given object implements the TransactionCommentActive interface.
*/
export declare function instanceOfTransactionCommentActive(value: object): value is TransactionCommentActive;
export declare function TransactionCommentActiveFromJSON(json: any): TransactionCommentActive;
export declare function TransactionCommentActiveFromJSONTyped(json: any, ignoreDiscriminator: boolean): TransactionCommentActive;
export declare function TransactionCommentActiveToJSON(json: any): TransactionCommentActive;
export declare function TransactionCommentActiveToJSONTyped(value?: TransactionCommentActive | null, ignoreDiscriminator?: boolean): any;