// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class DescribeEipMonitorDataRequest extends $dara.Model { /** * @remarks * This parameter is required. */ allocationId?: string; /** * @remarks * This parameter is required. */ endTime?: string; ownerAccount?: string; ownerId?: number; period?: number; regionId?: string; resourceOwnerAccount?: string; resourceOwnerId?: number; /** * @remarks * This parameter is required. */ startTime?: string; static names(): { [key: string]: string } { return { allocationId: 'AllocationId', endTime: 'EndTime', ownerAccount: 'OwnerAccount', ownerId: 'OwnerId', period: 'Period', regionId: 'RegionId', resourceOwnerAccount: 'ResourceOwnerAccount', resourceOwnerId: 'ResourceOwnerId', startTime: 'StartTime', }; } static types(): { [key: string]: any } { return { allocationId: 'string', endTime: 'string', ownerAccount: 'string', ownerId: 'number', period: 'number', regionId: 'string', resourceOwnerAccount: 'string', resourceOwnerId: 'number', startTime: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }