UNPKG

@getopenpay/client

Version:

OpenPay API TypeScript SDK

46 lines (45 loc) 1.34 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 { ValidationErrorLocInner } from './ValidationErrorLocInner'; /** * * @export * @interface ValidationError */ export interface ValidationError { /** * * @type {Array<ValidationErrorLocInner>} * @memberof ValidationError */ loc: Array<ValidationErrorLocInner>; /** * * @type {string} * @memberof ValidationError */ msg: string; /** * * @type {string} * @memberof ValidationError */ type: string; } /** * Check if a given object implements the ValidationError interface. */ export declare function instanceOfValidationError(value: object): value is ValidationError; export declare function ValidationErrorFromJSON(json: any): ValidationError; export declare function ValidationErrorFromJSONTyped(json: any, ignoreDiscriminator: boolean): ValidationError; export declare function ValidationErrorToJSON(json: any): ValidationError; export declare function ValidationErrorToJSONTyped(value?: ValidationError | null, ignoreDiscriminator?: boolean): any;