Class: TencentCloud::Ses::V20201002::ListReceiversRequest

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

Overview

ListReceivers请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(offset = nil, limit = nil, status = nil, keyword = nil) ⇒ ListReceiversRequest

Returns a new instance of ListReceiversRequest.



1409
1410
1411
1412
1413
1414
# File 'lib/v20201002/models.rb', line 1409

def initialize(offset=nil, limit=nil, status=nil, keyword=nil)
  @Offset = offset
  @Limit = limit
  @Status = status
  @KeyWord = keyword
end

Instance Attribute Details

#KeyWordObject

Parameters:

  • Offset:

    偏移量,整型,从0开始

  • Limit:

    限制数目,整型,不超过100

  • Status:

    列表状态(1 待上传 2 上传中 3传完成),若查询所有就不传这个字段

  • KeyWord:

    列表名称的关键字,模糊查询



1407
1408
1409
# File 'lib/v20201002/models.rb', line 1407

def KeyWord
  @KeyWord
end

#LimitObject

Parameters:

  • Offset:

    偏移量,整型,从0开始

  • Limit:

    限制数目,整型,不超过100

  • Status:

    列表状态(1 待上传 2 上传中 3传完成),若查询所有就不传这个字段

  • KeyWord:

    列表名称的关键字,模糊查询



1407
1408
1409
# File 'lib/v20201002/models.rb', line 1407

def Limit
  @Limit
end

#OffsetObject

Parameters:

  • Offset:

    偏移量,整型,从0开始

  • Limit:

    限制数目,整型,不超过100

  • Status:

    列表状态(1 待上传 2 上传中 3传完成),若查询所有就不传这个字段

  • KeyWord:

    列表名称的关键字,模糊查询



1407
1408
1409
# File 'lib/v20201002/models.rb', line 1407

def Offset
  @Offset
end

#StatusObject

Parameters:

  • Offset:

    偏移量,整型,从0开始

  • Limit:

    限制数目,整型,不超过100

  • Status:

    列表状态(1 待上传 2 上传中 3传完成),若查询所有就不传这个字段

  • KeyWord:

    列表名称的关键字,模糊查询



1407
1408
1409
# File 'lib/v20201002/models.rb', line 1407

def Status
  @Status
end

Instance Method Details

#deserialize(params) ⇒ Object



1416
1417
1418
1419
1420
1421
# File 'lib/v20201002/models.rb', line 1416

def deserialize(params)
  @Offset = params['Offset']
  @Limit = params['Limit']
  @Status = params['Status']
  @KeyWord = params['KeyWord']
end