/** * OpenAPI definition * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v0 * * * 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 ResourceInstanceQuery */ export interface ResourceInstanceQuery { /** * * @type {number} * @memberof ResourceInstanceQuery */ page?: number; /** * * @type {number} * @memberof ResourceInstanceQuery */ perPage?: number; /** * * @type {boolean} * @memberof ResourceInstanceQuery */ includeTotalCount?: boolean; /** * * @type {string} * @memberof ResourceInstanceQuery */ search?: string; /** * * @type {string} * @memberof ResourceInstanceQuery */ tenant?: string; /** * * @type {string} * @memberof ResourceInstanceQuery */ resource?: string; } /** * Check if a given object implements the ResourceInstanceQuery interface. */ export declare function instanceOfResourceInstanceQuery(value: object): value is ResourceInstanceQuery; export declare function ResourceInstanceQueryFromJSON(json: any): ResourceInstanceQuery; export declare function ResourceInstanceQueryFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResourceInstanceQuery; export declare function ResourceInstanceQueryToJSON(json: any): ResourceInstanceQuery; export declare function ResourceInstanceQueryToJSONTyped(value?: ResourceInstanceQuery | null, ignoreDiscriminator?: boolean): any;