// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class DescribeCloudAssistantSettingsRequest extends $dara.Model { ownerAccount?: string; ownerId?: number; /** * @remarks * The region ID. * * This parameter is required. * * @example * cn-hangzhou */ regionId?: string; resourceOwnerAccount?: string; resourceOwnerId?: number; /** * @remarks * The Cloud Assistant configurations. * * This parameter is required. */ settingType?: string[]; static names(): { [key: string]: string } { return { ownerAccount: 'OwnerAccount', ownerId: 'OwnerId', regionId: 'RegionId', resourceOwnerAccount: 'ResourceOwnerAccount', resourceOwnerId: 'ResourceOwnerId', settingType: 'SettingType', }; } static types(): { [key: string]: any } { return { ownerAccount: 'string', ownerId: 'number', regionId: 'string', resourceOwnerAccount: 'string', resourceOwnerId: 'number', settingType: { 'type': 'array', 'itemType': 'string' }, }; } validate() { if(Array.isArray(this.settingType)) { $dara.Model.validateArray(this.settingType); } super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }