/** * Squidex API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0.0 * * * 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 QueryDto */ export interface QueryDto { /** * The optional list of ids to query. * @type {Array} * @memberof QueryDto */ ids?: Array | null; /** * The optional odata query. * @type {string} * @memberof QueryDto */ oData?: string | null; /** * The optional json query. * @type {any} * @memberof QueryDto */ q?: any | null; /** * The parent id (for assets). * @type {string} * @memberof QueryDto */ parentId?: string | null; } /** * Check if a given object implements the QueryDto interface. */ export declare function instanceOfQueryDto(value: any): value is QueryDto; export declare function QueryDtoFromJSON(json: any): QueryDto; export declare function QueryDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): QueryDto; export declare function QueryDtoToJSON(value?: QueryDto | null, _ignoreDiscriminator?: boolean): any;