import type { TokenVersion } from './TokenVersion'; /** * * @export * @interface TokenVersionListResponse */ export interface TokenVersionListResponse { /** * An array containing the actual response objects. * @type {Array} * @memberof TokenVersionListResponse */ readonly data?: Array; /** * 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 | null, ignoreDiscriminator?: boolean): any;