import type { StaticValue } from './StaticValue'; /** * * @export * @interface StaticValueSearchResponse */ export interface StaticValueSearchResponse { /** * An array containing the actual response objects. * @type {Array} * @memberof StaticValueSearchResponse */ readonly data?: Array; /** * The number of skipped objects. * @type {number} * @memberof StaticValueSearchResponse */ readonly offset?: number; /** * Whether there are more objects available after this set. If false, there are no more objects to retrieve. * @type {boolean} * @memberof StaticValueSearchResponse */ readonly hasMore?: boolean; /** * The applied limit on the number of objects returned. * @type {number} * @memberof StaticValueSearchResponse */ readonly limit?: number; } /** * Check if a given object implements the StaticValueSearchResponse interface. */ export declare function instanceOfStaticValueSearchResponse(value: object): value is StaticValueSearchResponse; export declare function StaticValueSearchResponseFromJSON(json: any): StaticValueSearchResponse; export declare function StaticValueSearchResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): StaticValueSearchResponse; export declare function StaticValueSearchResponseToJSON(json: any): StaticValueSearchResponse; export declare function StaticValueSearchResponseToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any;