UNPKG

@apideck/node

Version:
28 lines (27 loc) 945 B
/** * 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. */ /** * * @export * @interface AccountingDepartmentsFilter */ export interface AccountingDepartmentsFilter { /** * Id of the subsidiary to search for * @type {string} * @memberof AccountingDepartmentsFilter */ subsidiary?: string; } export declare function AccountingDepartmentsFilterFromJSON(json: any): AccountingDepartmentsFilter; export declare function AccountingDepartmentsFilterFromJSONTyped(json: any, ignoreDiscriminator: boolean): AccountingDepartmentsFilter; export declare function AccountingDepartmentsFilterToJSON(value?: AccountingDepartmentsFilter | null): any;