/** * * @export * @interface RefundCommentActive */ export interface RefundCommentActive { /** * The comment's actual content. * @type {string} * @memberof RefundCommentActive */ content?: string; /** * The version number indicates the version of the entity. The version is incremented whenever the entity is changed. * @type {number} * @memberof RefundCommentActive */ version: number; } /** * Check if a given object implements the RefundCommentActive interface. */ export declare function instanceOfRefundCommentActive(value: object): value is RefundCommentActive; export declare function RefundCommentActiveFromJSON(json: any): RefundCommentActive; export declare function RefundCommentActiveFromJSONTyped(json: any, ignoreDiscriminator: boolean): RefundCommentActive; export declare function RefundCommentActiveToJSON(json: any): RefundCommentActive; export declare function RefundCommentActiveToJSONTyped(value?: RefundCommentActive | null, ignoreDiscriminator?: boolean): any;