Class: TencentCloud::Cpdp::V20190820::QueryExceedingInfoRequest

Inherits:
TencentCloud::Common::AbstractModel
  • Object
show all
Defined in:
lib/v20190820/models.rb

Overview

QueryExceedingInfo请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(timestr = nil, dimension = nil, pagenumber = nil) ⇒ QueryExceedingInfoRequest

Returns a new instance of QueryExceedingInfoRequest.



16843
16844
16845
16846
16847
# File 'lib/v20190820/models.rb', line 16843

def initialize(timestr=nil, dimension=nil, pagenumber=nil)
  @TimeStr = timestr
  @Dimension = dimension
  @PageNumber = pagenumber
end

Instance Attribute Details

#DimensionObject

Parameters:

  • TimeStr:

    超额日期。格式为yyyy-MM-dd。

  • Dimension:

    维度。目前支持三个维度: AGENT, ANCHOR, ORDER。不填默认使用AGENT维度。

  • PageNumber:

    分页信息。不填默认Index为1,Count为100。



16841
16842
16843
# File 'lib/v20190820/models.rb', line 16841

def Dimension
  @Dimension
end

#PageNumberObject

Parameters:

  • TimeStr:

    超额日期。格式为yyyy-MM-dd。

  • Dimension:

    维度。目前支持三个维度: AGENT, ANCHOR, ORDER。不填默认使用AGENT维度。

  • PageNumber:

    分页信息。不填默认Index为1,Count为100。



16841
16842
16843
# File 'lib/v20190820/models.rb', line 16841

def PageNumber
  @PageNumber
end

#TimeStrObject

Parameters:

  • TimeStr:

    超额日期。格式为yyyy-MM-dd。

  • Dimension:

    维度。目前支持三个维度: AGENT, ANCHOR, ORDER。不填默认使用AGENT维度。

  • PageNumber:

    分页信息。不填默认Index为1,Count为100。



16841
16842
16843
# File 'lib/v20190820/models.rb', line 16841

def TimeStr
  @TimeStr
end

Instance Method Details

#deserialize(params) ⇒ Object



16849
16850
16851
16852
16853
16854
16855
16856
# File 'lib/v20190820/models.rb', line 16849

def deserialize(params)
  @TimeStr = params['TimeStr']
  @Dimension = params['Dimension']
  unless params['PageNumber'].nil?
    @PageNumber = Paging.new
    @PageNumber.deserialize(params['PageNumber'])
  end
end