@getopenpay/client
Version:
OpenPay API TypeScript SDK
45 lines (44 loc) • 1.26 kB
TypeScript
/**
* OpenPay API
* super charge your subscription management.
*
* The version of the OpenAPI document: 1.2.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
*
* @export
* @interface InvoiceComment
*/
export interface InvoiceComment {
/**
* Status update.
* @type {string}
* @memberof InvoiceComment
*/
comment: string;
/**
* Creation date of the comment.
* @type {Date}
* @memberof InvoiceComment
*/
createdAt: Date;
/**
*
* @type {string}
* @memberof InvoiceComment
*/
userEmail: string | null;
}
/**
* Check if a given object implements the InvoiceComment interface.
*/
export declare function instanceOfInvoiceComment(value: object): value is InvoiceComment;
export declare function InvoiceCommentFromJSON(json: any): InvoiceComment;
export declare function InvoiceCommentFromJSONTyped(json: any, ignoreDiscriminator: boolean): InvoiceComment;
export declare function InvoiceCommentToJSON(json: any): InvoiceComment;
export declare function InvoiceCommentToJSONTyped(value?: InvoiceComment | null, ignoreDiscriminator?: boolean): any;