UNPKG

@apideck/node

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