Class: TencentCloud::Tiia::V20190529::DescribeGroupsRequest

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

Overview

DescribeGroups请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(offset = nil, limit = nil, groupid = nil) ⇒ DescribeGroupsRequest

Returns a new instance of DescribeGroupsRequest.



681
682
683
684
685
# File 'lib/v20190529/models.rb', line 681

def initialize(offset=nil, limit=nil, groupid=nil)
  @Offset = offset
  @Limit = limit
  @GroupId = groupid
end

Instance Attribute Details

#GroupIdObject

Parameters:

  • Offset:

    起始序号,默认值为0。

  • Limit:

    返回数量,默认值为10,最大值为100。

  • GroupId:

    图库ID,如果不为空,则返回指定库信息。



679
680
681
# File 'lib/v20190529/models.rb', line 679

def GroupId
  @GroupId
end

#LimitObject

Parameters:

  • Offset:

    起始序号,默认值为0。

  • Limit:

    返回数量,默认值为10,最大值为100。

  • GroupId:

    图库ID,如果不为空,则返回指定库信息。



679
680
681
# File 'lib/v20190529/models.rb', line 679

def Limit
  @Limit
end

#OffsetObject

Parameters:

  • Offset:

    起始序号,默认值为0。

  • Limit:

    返回数量,默认值为10,最大值为100。

  • GroupId:

    图库ID,如果不为空,则返回指定库信息。



679
680
681
# File 'lib/v20190529/models.rb', line 679

def Offset
  @Offset
end

Instance Method Details

#deserialize(params) ⇒ Object



687
688
689
690
691
# File 'lib/v20190529/models.rb', line 687

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