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