import type { SubscriptionProductComponentGroup } from './SubscriptionProductComponentGroup'; /** * * @export * @interface ProductComponentGroupListResponse */ export interface ProductComponentGroupListResponse { /** * An array containing the actual response objects. * @type {Array} * @memberof ProductComponentGroupListResponse */ readonly data?: Array; /** * Whether there are more objects available after this set. If false, there are no more objects to retrieve. * @type {boolean} * @memberof ProductComponentGroupListResponse */ readonly hasMore?: boolean; /** * The applied limit on the number of objects returned. * @type {number} * @memberof ProductComponentGroupListResponse */ readonly limit?: number; } /** * Check if a given object implements the ProductComponentGroupListResponse interface. */ export declare function instanceOfProductComponentGroupListResponse(value: object): value is ProductComponentGroupListResponse; export declare function ProductComponentGroupListResponseFromJSON(json: any): ProductComponentGroupListResponse; export declare function ProductComponentGroupListResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProductComponentGroupListResponse; export declare function ProductComponentGroupListResponseToJSON(json: any): ProductComponentGroupListResponse; export declare function ProductComponentGroupListResponseToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any;