UNPKG

wallee

Version:
35 lines (34 loc) 1.66 kB
import type { SubscriptionProductComponentGroup } from './SubscriptionProductComponentGroup'; /** * * @export * @interface ProductComponentGroupListResponse */ export interface ProductComponentGroupListResponse { /** * An array containing the actual response objects. * @type {Array<SubscriptionProductComponentGroup>} * @memberof ProductComponentGroupListResponse */ readonly data?: Array<SubscriptionProductComponentGroup>; /** * 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<ProductComponentGroupListResponse, 'data' | 'hasMore' | 'limit'> | null, ignoreDiscriminator?: boolean): any;