UNPKG

@apideck/node

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