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