UNPKG

@getopenpay/client

Version:

OpenPay API TypeScript SDK

39 lines (38 loc) 1.26 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 DeletePriceResponse */ export interface DeletePriceResponse { /** * Message describing result of API call. * @type {string} * @memberof DeletePriceResponse */ message?: string; /** * Unique identifier of the price. * @type {string} * @memberof DeletePriceResponse */ priceId: string; } /** * Check if a given object implements the DeletePriceResponse interface. */ export declare function instanceOfDeletePriceResponse(value: object): value is DeletePriceResponse; export declare function DeletePriceResponseFromJSON(json: any): DeletePriceResponse; export declare function DeletePriceResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeletePriceResponse; export declare function DeletePriceResponseToJSON(json: any): DeletePriceResponse; export declare function DeletePriceResponseToJSONTyped(value?: DeletePriceResponse | null, ignoreDiscriminator?: boolean): any;