UNPKG

@apideck/node

Version:
28 lines (27 loc) 927 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 AccountingLocationsFilter */ export interface AccountingLocationsFilter { /** * Id of the subsidiary to search for * @type {string} * @memberof AccountingLocationsFilter */ subsidiary?: string; } export declare function AccountingLocationsFilterFromJSON(json: any): AccountingLocationsFilter; export declare function AccountingLocationsFilterFromJSONTyped(json: any, ignoreDiscriminator: boolean): AccountingLocationsFilter; export declare function AccountingLocationsFilterToJSON(value?: AccountingLocationsFilter | null): any;