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 { HrisCompany } from './HrisCompany'; import { Raw } from './Raw'; /** * * @export * @interface GetHrisCompanyResponse */ export interface GetHrisCompanyResponse { /** * HTTP Response Status Code * @type {number} * @memberof GetHrisCompanyResponse */ status_code: number; /** * HTTP Response Status * @type {string} * @memberof GetHrisCompanyResponse */ status: string; /** * Apideck ID of service provider * @type {string} * @memberof GetHrisCompanyResponse */ service: string; /** * Unified API resource name * @type {string} * @memberof GetHrisCompanyResponse */ resource: string; /** * Operation performed * @type {string} * @memberof GetHrisCompanyResponse */ operation: string; /** * * @type {HrisCompany} * @memberof GetHrisCompanyResponse */ data: HrisCompany; /** * * @type {Raw} * @memberof GetHrisCompanyResponse */ _raw?: Raw | null; } export declare function GetHrisCompanyResponseFromJSON(json: any): GetHrisCompanyResponse; export declare function GetHrisCompanyResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetHrisCompanyResponse; export declare function GetHrisCompanyResponseToJSON(value?: GetHrisCompanyResponse | null): any;