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