UNPKG

@apideck/node

Version:
62 lines (61 loc) 1.49 kB
/** * 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 { Api } from './Api'; import { Links } from './Links'; import { Meta } from './Meta'; import { Raw } from './Raw'; /** * * @export * @interface GetApisResponse */ export interface GetApisResponse { /** * HTTP Response Status Code * @type {number} * @memberof GetApisResponse */ status_code: number; /** * HTTP Response Status * @type {string} * @memberof GetApisResponse */ status: string; /** * * @type {Array<Api>} * @memberof GetApisResponse */ data: Array<Api>; /** * * @type {Raw} * @memberof GetApisResponse */ _raw?: Raw | null; /** * * @type {Meta} * @memberof GetApisResponse */ meta?: Meta; /** * * @type {Links} * @memberof GetApisResponse */ links?: Links; } export declare function GetApisResponseFromJSON(json: any): GetApisResponse; export declare function GetApisResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetApisResponse; export declare function GetApisResponseToJSON(value?: GetApisResponse | null): any;