// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class ModifyApiGroupResponseBody extends $dara.Model { /** * @remarks * The root path of the API. * * @example * /test */ basePath?: string; /** * @remarks * The description of the API group. * * @example * New weather informations. */ description?: string; /** * @remarks * The ID of the API group. This ID is generated by the system and globally unique. * * @example * 523e8dc7bbe04613b5b1d726c2a7889d */ groupId?: string; /** * @remarks * The name of the group to which an API belongs. * * @example * NewWeather */ groupName?: string; /** * @remarks * The ID of the request. * * @example * 4CF287C6-CE5B-477B-BE27-C48F99EADBC8 */ requestId?: string; /** * @remarks * The second-level domain name automatically assigned to the API group. * * @example * 523e8dc7bbe04613b5b1d726c2a7889d-cn-hangzhou.alicloudapi.com */ subDomain?: string; static names(): { [key: string]: string } { return { basePath: 'BasePath', description: 'Description', groupId: 'GroupId', groupName: 'GroupName', requestId: 'RequestId', subDomain: 'SubDomain', }; } static types(): { [key: string]: any } { return { basePath: 'string', description: 'string', groupId: 'string', groupName: 'string', requestId: 'string', subDomain: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }