UNPKG

@getopenpay/client

Version:

OpenPay API TypeScript SDK

33 lines (32 loc) 1.16 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 MarkUncollectibleRequest */ export interface MarkUncollectibleRequest { /** * * @type {string} * @memberof MarkUncollectibleRequest */ comment?: string | null; } /** * Check if a given object implements the MarkUncollectibleRequest interface. */ export declare function instanceOfMarkUncollectibleRequest(value: object): value is MarkUncollectibleRequest; export declare function MarkUncollectibleRequestFromJSON(json: any): MarkUncollectibleRequest; export declare function MarkUncollectibleRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): MarkUncollectibleRequest; export declare function MarkUncollectibleRequestToJSON(json: any): MarkUncollectibleRequest; export declare function MarkUncollectibleRequestToJSONTyped(value?: MarkUncollectibleRequest | null, ignoreDiscriminator?: boolean): any;