Class: TencentCloud::Organization::V20210331::ListOrganizationServiceRequest

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

Overview

ListOrganizationService请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(offset = nil, limit = nil, searchkey = nil) ⇒ ListOrganizationServiceRequest

Returns a new instance of ListOrganizationServiceRequest.



4690
4691
4692
4693
4694
# File 'lib/v20210331/models.rb', line 4690

def initialize(offset=nil, limit=nil, searchkey=nil)
  @Offset = offset
  @Limit = limit
  @SearchKey = searchkey
end

Instance Attribute Details

#LimitObject

Parameters:

  • Offset:

    偏移量。取值是limit的整数倍,默认值 : 0

  • Limit:

    限制数目。取值范围:1~50,默认值:10

  • SearchKey:

    名称搜索关键字。



4688
4689
4690
# File 'lib/v20210331/models.rb', line 4688

def Limit
  @Limit
end

#OffsetObject

Parameters:

  • Offset:

    偏移量。取值是limit的整数倍,默认值 : 0

  • Limit:

    限制数目。取值范围:1~50,默认值:10

  • SearchKey:

    名称搜索关键字。



4688
4689
4690
# File 'lib/v20210331/models.rb', line 4688

def Offset
  @Offset
end

#SearchKeyObject

Parameters:

  • Offset:

    偏移量。取值是limit的整数倍,默认值 : 0

  • Limit:

    限制数目。取值范围:1~50,默认值:10

  • SearchKey:

    名称搜索关键字。



4688
4689
4690
# File 'lib/v20210331/models.rb', line 4688

def SearchKey
  @SearchKey
end

Instance Method Details

#deserialize(params) ⇒ Object



4696
4697
4698
4699
4700
# File 'lib/v20210331/models.rb', line 4696

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