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