wallee
Version:
TypeScript/JavaScript client for wallee
35 lines (34 loc) • 1.43 kB
TypeScript
import type { TokenVersion } from './TokenVersion';
/**
*
* @export
* @interface TokenVersionListResponse
*/
export interface TokenVersionListResponse {
/**
* An array containing the actual response objects.
* @type {Array<TokenVersion>}
* @memberof TokenVersionListResponse
*/
readonly data?: Array<TokenVersion>;
/**
* Whether there are more objects available after this set. If false, there are no more objects to retrieve.
* @type {boolean}
* @memberof TokenVersionListResponse
*/
readonly hasMore?: boolean;
/**
* The applied limit on the number of objects returned.
* @type {number}
* @memberof TokenVersionListResponse
*/
readonly limit?: number;
}
/**
* Check if a given object implements the TokenVersionListResponse interface.
*/
export declare function instanceOfTokenVersionListResponse(value: object): value is TokenVersionListResponse;
export declare function TokenVersionListResponseFromJSON(json: any): TokenVersionListResponse;
export declare function TokenVersionListResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): TokenVersionListResponse;
export declare function TokenVersionListResponseToJSON(json: any): TokenVersionListResponse;
export declare function TokenVersionListResponseToJSONTyped(value?: Omit<TokenVersionListResponse, 'data' | 'hasMore' | 'limit'> | null, ignoreDiscriminator?: boolean): any;