UNPKG

@apideck/node

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