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.



4828
4829
4830
4831
4832
# File 'lib/v20210331/models.rb', line 4828

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:

    名称搜索关键字。



4826
4827
4828
# File 'lib/v20210331/models.rb', line 4826

def Limit
  @Limit
end

#OffsetObject

Parameters:

  • Offset:

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

  • Limit:

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

  • SearchKey:

    名称搜索关键字。



4826
4827
4828
# File 'lib/v20210331/models.rb', line 4826

def Offset
  @Offset
end

#SearchKeyObject

Parameters:

  • Offset:

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

  • Limit:

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

  • SearchKey:

    名称搜索关键字。



4826
4827
4828
# File 'lib/v20210331/models.rb', line 4826

def SearchKey
  @SearchKey
end

Instance Method Details

#deserialize(params) ⇒ Object



4834
4835
4836
4837
4838
# File 'lib/v20210331/models.rb', line 4834

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