@apideck/node
Version:
Apideck Node.js SDK
62 lines (61 loc) • 1.61 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 { ApiResource } from './ApiResource';
import { Links } from './Links';
import { Meta } from './Meta';
import { Raw } from './Raw';
/**
*
* @export
* @interface GetApiResourceResponse
*/
export interface GetApiResourceResponse {
/**
* HTTP Response Status Code
* @type {number}
* @memberof GetApiResourceResponse
*/
status_code: number;
/**
* HTTP Response Status
* @type {string}
* @memberof GetApiResourceResponse
*/
status: string;
/**
*
* @type {ApiResource}
* @memberof GetApiResourceResponse
*/
data: ApiResource;
/**
*
* @type {Raw}
* @memberof GetApiResourceResponse
*/
_raw?: Raw | null;
/**
*
* @type {Meta}
* @memberof GetApiResourceResponse
*/
meta?: Meta;
/**
*
* @type {Links}
* @memberof GetApiResourceResponse
*/
links?: Links;
}
export declare function GetApiResourceResponseFromJSON(json: any): GetApiResourceResponse;
export declare function GetApiResourceResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetApiResourceResponse;
export declare function GetApiResourceResponseToJSON(value?: GetApiResourceResponse | null): any;