UNPKG

@getopenpay/client

Version:

OpenPay API TypeScript SDK

33 lines (32 loc) 1.08 kB
/** * 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 AddCommentRequest */ export interface AddCommentRequest { /** * Remarks on the invoice. * @type {string} * @memberof AddCommentRequest */ comment: string; } /** * Check if a given object implements the AddCommentRequest interface. */ export declare function instanceOfAddCommentRequest(value: object): value is AddCommentRequest; export declare function AddCommentRequestFromJSON(json: any): AddCommentRequest; export declare function AddCommentRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): AddCommentRequest; export declare function AddCommentRequestToJSON(json: any): AddCommentRequest; export declare function AddCommentRequestToJSONTyped(value?: AddCommentRequest | null, ignoreDiscriminator?: boolean): any;