wallee
Version:
TypeScript/JavaScript client for wallee
41 lines (40 loc) • 1.48 kB
TypeScript
import type { Token } from './Token';
/**
*
* @export
* @interface TokenSearchResponse
*/
export interface TokenSearchResponse {
/**
* An array containing the actual response objects.
* @type {Array<Token>}
* @memberof TokenSearchResponse
*/
readonly data?: Array<Token>;
/**
* 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<TokenSearchResponse, 'data' | 'offset' | 'hasMore' | 'limit'> | null, ignoreDiscriminator?: boolean): any;