UNPKG

@apideck/node

Version:
48 lines (47 loc) 1.4 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. */ import { CustomMapping } from './CustomMapping'; import { Raw } from './Raw'; /** * * @export * @interface UpdateCustomMappingResponse */ export interface UpdateCustomMappingResponse { /** * HTTP Response Status Code * @type {number} * @memberof UpdateCustomMappingResponse */ status_code: number; /** * HTTP Response Status * @type {string} * @memberof UpdateCustomMappingResponse */ status: string; /** * * @type {CustomMapping} * @memberof UpdateCustomMappingResponse */ data: CustomMapping; /** * * @type {Raw} * @memberof UpdateCustomMappingResponse */ _raw?: Raw | null; } export declare function UpdateCustomMappingResponseFromJSON(json: any): UpdateCustomMappingResponse; export declare function UpdateCustomMappingResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateCustomMappingResponse; export declare function UpdateCustomMappingResponseToJSON(value?: UpdateCustomMappingResponse | null): any;