wallee
Version:
TypeScript/JavaScript client for wallee
28 lines (27 loc) • 1.18 kB
TypeScript
/**
*
* @export
* @interface TransactionInvoiceCommentCreate
*/
export interface TransactionInvoiceCommentCreate {
/**
* The comment's actual content.
* @type {string}
* @memberof TransactionInvoiceCommentCreate
*/
content?: string;
/**
* The transaction invoice that the comment belongs to.
* @type {number}
* @memberof TransactionInvoiceCommentCreate
*/
transactionInvoice: number;
}
/**
* Check if a given object implements the TransactionInvoiceCommentCreate interface.
*/
export declare function instanceOfTransactionInvoiceCommentCreate(value: object): value is TransactionInvoiceCommentCreate;
export declare function TransactionInvoiceCommentCreateFromJSON(json: any): TransactionInvoiceCommentCreate;
export declare function TransactionInvoiceCommentCreateFromJSONTyped(json: any, ignoreDiscriminator: boolean): TransactionInvoiceCommentCreate;
export declare function TransactionInvoiceCommentCreateToJSON(json: any): TransactionInvoiceCommentCreate;
export declare function TransactionInvoiceCommentCreateToJSONTyped(value?: TransactionInvoiceCommentCreate | null, ignoreDiscriminator?: boolean): any;