UNPKG

@apideck/node

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