@apideck/node
Version:
Apideck Node.js SDK
47 lines (46 loc) • 1.28 kB
TypeScript
/**
* 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 DeleteConsumerResponse
*/
export interface DeleteConsumerResponse {
/**
* HTTP Response Status Code
* @type {number}
* @memberof DeleteConsumerResponse
*/
status_code: number;
/**
* HTTP Response Status
* @type {string}
* @memberof DeleteConsumerResponse
*/
status: string;
/**
*
* @type {object}
* @memberof DeleteConsumerResponse
*/
data: object | null;
/**
*
* @type {Raw}
* @memberof DeleteConsumerResponse
*/
_raw?: Raw | null;
}
export declare function DeleteConsumerResponseFromJSON(json: any): DeleteConsumerResponse;
export declare function DeleteConsumerResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeleteConsumerResponse;
export declare function DeleteConsumerResponseToJSON(value?: DeleteConsumerResponse | null): any;