UNPKG

@getopenpay/client

Version:

OpenPay API TypeScript SDK

34 lines (33 loc) 1.17 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. */ import type { ValidationError } from './ValidationError'; /** * * @export * @interface HTTPValidationError */ export interface HTTPValidationError { /** * * @type {Array<ValidationError>} * @memberof HTTPValidationError */ detail?: Array<ValidationError>; } /** * Check if a given object implements the HTTPValidationError interface. */ export declare function instanceOfHTTPValidationError(value: object): value is HTTPValidationError; export declare function HTTPValidationErrorFromJSON(json: any): HTTPValidationError; export declare function HTTPValidationErrorFromJSONTyped(json: any, ignoreDiscriminator: boolean): HTTPValidationError; export declare function HTTPValidationErrorToJSON(json: any): HTTPValidationError; export declare function HTTPValidationErrorToJSONTyped(value?: HTTPValidationError | null, ignoreDiscriminator?: boolean): any;