UNPKG

@getopenpay/client

Version:

OpenPay API TypeScript SDK

33 lines (32 loc) 1.1 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 UpdateChargeRequest */ export interface UpdateChargeRequest { /** * * @type {object} * @memberof UpdateChargeRequest */ customFields?: object | null; } /** * Check if a given object implements the UpdateChargeRequest interface. */ export declare function instanceOfUpdateChargeRequest(value: object): value is UpdateChargeRequest; export declare function UpdateChargeRequestFromJSON(json: any): UpdateChargeRequest; export declare function UpdateChargeRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateChargeRequest; export declare function UpdateChargeRequestToJSON(json: any): UpdateChargeRequest; export declare function UpdateChargeRequestToJSONTyped(value?: UpdateChargeRequest | null, ignoreDiscriminator?: boolean): any;