UNPKG

@getopenpay/client

Version:

OpenPay API TypeScript SDK

27 lines (26 loc) 833 B
/** * 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. */ /** * The value to apply the operator on * @export * @interface Value */ export interface Value { } /** * Check if a given object implements the Value interface. */ export declare function instanceOfValue(value: object): value is Value; export declare function ValueFromJSON(json: any): Value; export declare function ValueFromJSONTyped(json: any, ignoreDiscriminator: boolean): Value; export declare function ValueToJSON(json: any): Value; export declare function ValueToJSONTyped(value?: Value | null, ignoreDiscriminator?: boolean): any;