/**
 * 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 { Raw } from './Raw';
/**
 *
 * @export
 * @interface GetResourceSchemaResponse
 */
export interface GetResourceSchemaResponse {
    /**
     * HTTP Response Status Code
     * @type {number}
     * @memberof GetResourceSchemaResponse
     */
    status_code: number;
    /**
     * HTTP Response Status
     * @type {string}
     * @memberof GetResourceSchemaResponse
     */
    status: string;
    /**
     *
     * @type {object}
     * @memberof GetResourceSchemaResponse
     */
    data: object;
    /**
     *
     * @type {Raw}
     * @memberof GetResourceSchemaResponse
     */
    _raw?: Raw | null;
}
export declare function GetResourceSchemaResponseFromJSON(json: any): GetResourceSchemaResponse;
export declare function GetResourceSchemaResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetResourceSchemaResponse;
export declare function GetResourceSchemaResponseToJSON(value?: GetResourceSchemaResponse | null): any;
