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