import * as $dara from '@darabonba/typescript'; export declare class DescribePurchasedApiGroupResponseBodyDomainsDomainItem extends $dara.Model { domainName?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribePurchasedApiGroupResponseBodyDomains extends $dara.Model { domainItem?: DescribePurchasedApiGroupResponseBodyDomainsDomainItem[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribePurchasedApiGroupResponseBody extends $dara.Model { /** * @remarks * The description of the API group. * * @example * api group description */ description?: string; domains?: DescribePurchasedApiGroupResponseBodyDomains; /** * @remarks * The ID of the API group. * * @example * 48977d7b96074966a7c9c2a8872d7e06 */ groupId?: string; /** * @remarks * The name of the API group. * * @example * Weather */ groupName?: string; /** * @remarks * The time when the API group was purchased. * * @example * 2021-12-19T00:00:00 */ purchasedTime?: string; /** * @remarks * The region where the API group is located. * * @example * cn-qingdao */ regionId?: string; /** * @remarks * The ID of the request. * * @example * 61A16D46-EC04-5288-8A18-811B0F536CC2 */ requestId?: string; /** * @remarks * The status of the API group. * * * **NORMAL**: The API group is normal. * * **DELETE**: The API group is deleted. * * @example * NORMAL */ status?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }