Class: TencentCloud::Wav::V20210129::QueryCustomerProfileListRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Wav::V20210129::QueryCustomerProfileListRequest
- Defined in:
- lib/v20210129/models.rb
Overview
QueryCustomerProfileList请求参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(limit = nil, begintime = nil, endtime = nil, cursor = nil) ⇒ QueryCustomerProfileListRequest
constructor
A new instance of QueryCustomerProfileListRequest.
Constructor Details
#initialize(limit = nil, begintime = nil, endtime = nil, cursor = nil) ⇒ QueryCustomerProfileListRequest
Returns a new instance of QueryCustomerProfileListRequest.
2438 2439 2440 2441 2442 2443 |
# File 'lib/v20210129/models.rb', line 2438 def initialize(limit=nil, begintime=nil, endtime=nil, cursor=nil) @Limit = limit @BeginTime = begintime @EndTime = endtime @Cursor = cursor end |
Instance Attribute Details
#BeginTime ⇒ Object
2436 2437 2438 |
# File 'lib/v20210129/models.rb', line 2436 def BeginTime @BeginTime end |
#Cursor ⇒ Object
2436 2437 2438 |
# File 'lib/v20210129/models.rb', line 2436 def Cursor @Cursor end |
#EndTime ⇒ Object
2436 2437 2438 |
# File 'lib/v20210129/models.rb', line 2436 def EndTime @EndTime end |
#Limit ⇒ Object
2436 2437 2438 |
# File 'lib/v20210129/models.rb', line 2436 def Limit @Limit end |
Instance Method Details
#deserialize(params) ⇒ Object
2445 2446 2447 2448 2449 2450 |
# File 'lib/v20210129/models.rb', line 2445 def deserialize(params) @Limit = params['Limit'] @BeginTime = params['BeginTime'] @EndTime = params['EndTime'] @Cursor = params['Cursor'] end |