UNPKG

@apideck/node

Version:
66 lines (65 loc) 1.75 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 { CompanyInfo } from './CompanyInfo'; import { Raw } from './Raw'; /** * * @export * @interface GetCompanyInfoResponse */ export interface GetCompanyInfoResponse { /** * HTTP Response Status Code * @type {number} * @memberof GetCompanyInfoResponse */ status_code: number; /** * HTTP Response Status * @type {string} * @memberof GetCompanyInfoResponse */ status: string; /** * Apideck ID of service provider * @type {string} * @memberof GetCompanyInfoResponse */ service: string; /** * Unified API resource name * @type {string} * @memberof GetCompanyInfoResponse */ resource: string; /** * Operation performed * @type {string} * @memberof GetCompanyInfoResponse */ operation: string; /** * * @type {CompanyInfo} * @memberof GetCompanyInfoResponse */ data: CompanyInfo; /** * * @type {Raw} * @memberof GetCompanyInfoResponse */ _raw?: Raw | null; } export declare function GetCompanyInfoResponseFromJSON(json: any): GetCompanyInfoResponse; export declare function GetCompanyInfoResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetCompanyInfoResponse; export declare function GetCompanyInfoResponseToJSON(value?: GetCompanyInfoResponse | null): any;