/**
 * 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 GetCustomMappingResponse
 */
export interface GetCustomMappingResponse {
    /**
     * HTTP Response Status Code
     * @type {number}
     * @memberof GetCustomMappingResponse
     */
    status_code: number;
    /**
     * HTTP Response Status
     * @type {string}
     * @memberof GetCustomMappingResponse
     */
    status: string;
    /**
     *
     * @type {CustomMapping}
     * @memberof GetCustomMappingResponse
     */
    data: CustomMapping;
    /**
     *
     * @type {Raw}
     * @memberof GetCustomMappingResponse
     */
    _raw?: Raw | null;
}
export declare function GetCustomMappingResponseFromJSON(json: any): GetCustomMappingResponse;
export declare function GetCustomMappingResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetCustomMappingResponse;
export declare function GetCustomMappingResponseToJSON(value?: GetCustomMappingResponse | null): any;
