UNPKG

@apideck/node

Version:
58 lines (57 loc) 1.76 kB
/** * Apideck * The Apideck OpenAPI Spec: SDK Optimized * * The version of the OpenAPI document: 10.13.0 * Contact: support@apideck.com * * 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 PaymentRequiredResponse */ export interface PaymentRequiredResponse { /** * HTTP status code * @type {number} * @memberof PaymentRequiredResponse */ status_code?: number; /** * Contains an explanation of the status_code as defined in HTTP/1.1 standard (RFC 7231) * @type {string} * @memberof PaymentRequiredResponse */ error?: string; /** * The type of error returned * @type {string} * @memberof PaymentRequiredResponse */ type_name?: string; /** * A human-readable message providing more details about the error. * @type {string} * @memberof PaymentRequiredResponse */ message?: string; /** * Contains parameter or domain specific information related to the error and why it occurred. * @type {string} * @memberof PaymentRequiredResponse */ detail?: string; /** * Link to documentation of error type * @type {string} * @memberof PaymentRequiredResponse */ ref?: string; } export declare function PaymentRequiredResponseFromJSON(json: any): PaymentRequiredResponse; export declare function PaymentRequiredResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaymentRequiredResponse; export declare function PaymentRequiredResponseToJSON(value?: PaymentRequiredResponse | null): any;