import * as $dara from '@darabonba/typescript'; export declare class SetDefaultDomainRequest extends $dara.Model { /** * @remarks * The default domain name. * * The default domain name is in the format of `.onaliyun.com`. `` indicates the account alias. By default, the value of AccountAlias is the ID of the Alibaba Cloud account. The default domain name must end with `.onaliyun.com`. * * The default domain name can contain up to 64 characters in length. The default domain name can contain letters, digits, periods (.), underscores (_), and hyphens (-). * * > The default domain name cannot start or end with a hyphen (-) and cannot contain two consecutive hyphens (-). * * This parameter is required. * * @example * examplecompany.onaliyun.com */ defaultDomainName?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }