UNPKG

@apideck/node

Version:
28 lines (27 loc) 860 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 DriveGroupsFilter */ export interface DriveGroupsFilter { /** * ID of the drive group to filter on * @type {string} * @memberof DriveGroupsFilter */ parent_group_id?: string; } export declare function DriveGroupsFilterFromJSON(json: any): DriveGroupsFilter; export declare function DriveGroupsFilterFromJSONTyped(json: any, ignoreDiscriminator: boolean): DriveGroupsFilter; export declare function DriveGroupsFilterToJSON(value?: DriveGroupsFilter | null): any;