wallee
Version:
TypeScript/JavaScript client for wallee
22 lines (21 loc) • 940 B
TypeScript
/**
*
* @export
* @interface AbstractRefundCommentActive
*/
export interface AbstractRefundCommentActive {
/**
* The comment's actual content.
* @type {string}
* @memberof AbstractRefundCommentActive
*/
content?: string;
}
/**
* Check if a given object implements the AbstractRefundCommentActive interface.
*/
export declare function instanceOfAbstractRefundCommentActive(value: object): value is AbstractRefundCommentActive;
export declare function AbstractRefundCommentActiveFromJSON(json: any): AbstractRefundCommentActive;
export declare function AbstractRefundCommentActiveFromJSONTyped(json: any, ignoreDiscriminator: boolean): AbstractRefundCommentActive;
export declare function AbstractRefundCommentActiveToJSON(json: any): AbstractRefundCommentActive;
export declare function AbstractRefundCommentActiveToJSONTyped(value?: AbstractRefundCommentActive | null, ignoreDiscriminator?: boolean): any;