UNPKG

@apideck/node

Version:
48 lines (47 loc) 1.39 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 GetCustomMappingsResponse */ export interface GetCustomMappingsResponse { /** * HTTP Response Status Code * @type {number} * @memberof GetCustomMappingsResponse */ status_code: number; /** * HTTP Response Status * @type {string} * @memberof GetCustomMappingsResponse */ status: string; /** * * @type {Array<CustomMapping>} * @memberof GetCustomMappingsResponse */ data: Array<CustomMapping>; /** * * @type {Raw} * @memberof GetCustomMappingsResponse */ _raw?: Raw | null; } export declare function GetCustomMappingsResponseFromJSON(json: any): GetCustomMappingsResponse; export declare function GetCustomMappingsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetCustomMappingsResponse; export declare function GetCustomMappingsResponseToJSON(value?: GetCustomMappingsResponse | null): any;