UNPKG

@apideck/node

Version:
80 lines (79 loc) 2.25 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 { Links } from './Links'; import { Meta } from './Meta'; import { Raw } from './Raw'; /** * * @export * @interface GetAccountingDepartmentsResponse */ export interface GetAccountingDepartmentsResponse { /** * HTTP Response Status Code * @type {number} * @memberof GetAccountingDepartmentsResponse */ status_code: number; /** * HTTP Response Status * @type {string} * @memberof GetAccountingDepartmentsResponse */ status: string; /** * Apideck ID of service provider * @type {string} * @memberof GetAccountingDepartmentsResponse */ service: string; /** * Unified API resource name * @type {string} * @memberof GetAccountingDepartmentsResponse */ resource: string; /** * Operation performed * @type {string} * @memberof GetAccountingDepartmentsResponse */ operation: string; /** * * @type {Array<AccountingDepartment>} * @memberof GetAccountingDepartmentsResponse */ data: Array<AccountingDepartment>; /** * * @type {Meta} * @memberof GetAccountingDepartmentsResponse */ meta?: Meta; /** * * @type {Links} * @memberof GetAccountingDepartmentsResponse */ links?: Links; /** * * @type {Raw} * @memberof GetAccountingDepartmentsResponse */ _raw?: Raw | null; } export declare function GetAccountingDepartmentsResponseFromJSON(json: any): GetAccountingDepartmentsResponse; export declare function GetAccountingDepartmentsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetAccountingDepartmentsResponse; export declare function GetAccountingDepartmentsResponseToJSON(value?: GetAccountingDepartmentsResponse | null): any;