import * as $dara from '@darabonba/typescript'; export declare class DescribeDomainRequest extends $dara.Model { /** * @remarks * The custom domain name. * * This parameter is required. * * @example * api.demo.com */ domainName?: string; /** * @remarks * The ID of the API group. This ID is generated by the system and globally unique. * * This parameter is required. * * @example * 927d50c0f2e54b359919923d908bb015 */ groupId?: string; securityToken?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }