UNPKG

@apideck/node

Version:
80 lines (79 loc) 2.06 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 { Application } from './Application'; import { Links } from './Links'; import { Meta } from './Meta'; import { Raw } from './Raw'; /** * * @export * @interface GetApplicationsResponse */ export interface GetApplicationsResponse { /** * HTTP Response Status Code * @type {number} * @memberof GetApplicationsResponse */ status_code: number; /** * HTTP Response Status * @type {string} * @memberof GetApplicationsResponse */ status: string; /** * Apideck ID of service provider * @type {string} * @memberof GetApplicationsResponse */ service: string; /** * Unified API resource name * @type {string} * @memberof GetApplicationsResponse */ resource: string; /** * Operation performed * @type {string} * @memberof GetApplicationsResponse */ operation: string; /** * * @type {Array<Application>} * @memberof GetApplicationsResponse */ data: Array<Application>; /** * * @type {Raw} * @memberof GetApplicationsResponse */ _raw?: Raw | null; /** * * @type {Meta} * @memberof GetApplicationsResponse */ meta?: Meta; /** * * @type {Links} * @memberof GetApplicationsResponse */ links?: Links; } export declare function GetApplicationsResponseFromJSON(json: any): GetApplicationsResponse; export declare function GetApplicationsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetApplicationsResponse; export declare function GetApplicationsResponseToJSON(value?: GetApplicationsResponse | null): any;