wallee
Version:
TypeScript/JavaScript client for wallee
41 lines (40 loc) • 1.77 kB
TypeScript
import type { SubscriptionVersion } from './SubscriptionVersion';
/**
*
* @export
* @interface SubscriptionVersionSearchResponse
*/
export interface SubscriptionVersionSearchResponse {
/**
* An array containing the actual response objects.
* @type {Array<SubscriptionVersion>}
* @memberof SubscriptionVersionSearchResponse
*/
readonly data?: Array<SubscriptionVersion>;
/**
* The number of skipped objects.
* @type {number}
* @memberof SubscriptionVersionSearchResponse
*/
readonly offset?: number;
/**
* Whether there are more objects available after this set. If false, there are no more objects to retrieve.
* @type {boolean}
* @memberof SubscriptionVersionSearchResponse
*/
readonly hasMore?: boolean;
/**
* The applied limit on the number of objects returned.
* @type {number}
* @memberof SubscriptionVersionSearchResponse
*/
readonly limit?: number;
}
/**
* Check if a given object implements the SubscriptionVersionSearchResponse interface.
*/
export declare function instanceOfSubscriptionVersionSearchResponse(value: object): value is SubscriptionVersionSearchResponse;
export declare function SubscriptionVersionSearchResponseFromJSON(json: any): SubscriptionVersionSearchResponse;
export declare function SubscriptionVersionSearchResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SubscriptionVersionSearchResponse;
export declare function SubscriptionVersionSearchResponseToJSON(json: any): SubscriptionVersionSearchResponse;
export declare function SubscriptionVersionSearchResponseToJSONTyped(value?: Omit<SubscriptionVersionSearchResponse, 'data' | 'offset' | 'hasMore' | 'limit'> | null, ignoreDiscriminator?: boolean): any;