Class: TencentCloud::Ecm::V20190719::MonthNetwork
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ecm::V20190719::MonthNetwork
- Defined in:
- lib/v20190719/models.rb
Overview
客户对应月份的带宽信息
Instance Attribute Summary collapse
- #BandwidthPkgId ⇒ Object
- #BandwidthPkgType ⇒ Object
- #EffectiveDays ⇒ Object
- #EffectiveDaysRate ⇒ Object
- #EndTime ⇒ Object
- #FeeTraffic ⇒ Object
- #Isp ⇒ Object
- #Month ⇒ Object
- #MonthDays ⇒ Object
- #StartTime ⇒ Object
- #TrafficMaxIn ⇒ Object
- #TrafficMaxOut ⇒ Object
- #ZoneInfo ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(zoneinfo = nil, month = nil, bandwidthpkgid = nil, isp = nil, trafficmaxin = nil, trafficmaxout = nil, feetraffic = nil, starttime = nil, endtime = nil, effectivedays = nil, monthdays = nil, effectivedaysrate = nil, bandwidthpkgtype = nil) ⇒ MonthNetwork
constructor
A new instance of MonthNetwork.
Constructor Details
#initialize(zoneinfo = nil, month = nil, bandwidthpkgid = nil, isp = nil, trafficmaxin = nil, trafficmaxout = nil, feetraffic = nil, starttime = nil, endtime = nil, effectivedays = nil, monthdays = nil, effectivedaysrate = nil, bandwidthpkgtype = nil) ⇒ MonthNetwork
Returns a new instance of MonthNetwork.
8411 8412 8413 8414 8415 8416 8417 8418 8419 8420 8421 8422 8423 8424 8425 |
# File 'lib/v20190719/models.rb', line 8411 def initialize(zoneinfo=nil, month=nil, bandwidthpkgid=nil, isp=nil, trafficmaxin=nil, trafficmaxout=nil, feetraffic=nil, starttime=nil, endtime=nil, effectivedays=nil, monthdays=nil, effectivedaysrate=nil, bandwidthpkgtype=nil) @ZoneInfo = zoneinfo @Month = month @BandwidthPkgId = bandwidthpkgid @Isp = isp @TrafficMaxIn = trafficmaxin @TrafficMaxOut = trafficmaxout @FeeTraffic = feetraffic @StartTime = starttime @EndTime = endtime @EffectiveDays = effectivedays @MonthDays = monthdays @EffectiveDaysRate = effectivedaysrate @BandwidthPkgType = bandwidthpkgtype end |
Instance Attribute Details
#BandwidthPkgId ⇒ Object
8409 8410 8411 |
# File 'lib/v20190719/models.rb', line 8409 def BandwidthPkgId @BandwidthPkgId end |
#BandwidthPkgType ⇒ Object
8409 8410 8411 |
# File 'lib/v20190719/models.rb', line 8409 def BandwidthPkgType @BandwidthPkgType end |
#EffectiveDays ⇒ Object
8409 8410 8411 |
# File 'lib/v20190719/models.rb', line 8409 def EffectiveDays @EffectiveDays end |
#EffectiveDaysRate ⇒ Object
8409 8410 8411 |
# File 'lib/v20190719/models.rb', line 8409 def EffectiveDaysRate @EffectiveDaysRate end |
#EndTime ⇒ Object
8409 8410 8411 |
# File 'lib/v20190719/models.rb', line 8409 def EndTime @EndTime end |
#FeeTraffic ⇒ Object
8409 8410 8411 |
# File 'lib/v20190719/models.rb', line 8409 def FeeTraffic @FeeTraffic end |
#Isp ⇒ Object
8409 8410 8411 |
# File 'lib/v20190719/models.rb', line 8409 def Isp @Isp end |
#Month ⇒ Object
8409 8410 8411 |
# File 'lib/v20190719/models.rb', line 8409 def Month @Month end |
#MonthDays ⇒ Object
8409 8410 8411 |
# File 'lib/v20190719/models.rb', line 8409 def MonthDays @MonthDays end |
#StartTime ⇒ Object
8409 8410 8411 |
# File 'lib/v20190719/models.rb', line 8409 def StartTime @StartTime end |
#TrafficMaxIn ⇒ Object
8409 8410 8411 |
# File 'lib/v20190719/models.rb', line 8409 def TrafficMaxIn @TrafficMaxIn end |
#TrafficMaxOut ⇒ Object
8409 8410 8411 |
# File 'lib/v20190719/models.rb', line 8409 def TrafficMaxOut @TrafficMaxOut end |
#ZoneInfo ⇒ Object
8409 8410 8411 |
# File 'lib/v20190719/models.rb', line 8409 def ZoneInfo @ZoneInfo end |
Instance Method Details
#deserialize(params) ⇒ Object
8427 8428 8429 8430 8431 8432 8433 8434 8435 8436 8437 8438 8439 8440 8441 8442 8443 8444 |
# File 'lib/v20190719/models.rb', line 8427 def deserialize(params) unless params['ZoneInfo'].nil? @ZoneInfo = ZoneInfo.new @ZoneInfo.deserialize(params['ZoneInfo']) end @Month = params['Month'] @BandwidthPkgId = params['BandwidthPkgId'] @Isp = params['Isp'] @TrafficMaxIn = params['TrafficMaxIn'] @TrafficMaxOut = params['TrafficMaxOut'] @FeeTraffic = params['FeeTraffic'] @StartTime = params['StartTime'] @EndTime = params['EndTime'] @EffectiveDays = params['EffectiveDays'] @MonthDays = params['MonthDays'] @EffectiveDaysRate = params['EffectiveDaysRate'] @BandwidthPkgType = params['BandwidthPkgType'] end |