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