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