Class: TencentCloud::Apigateway::V20180808::DescribeUsagePlanSecretIdsRequest

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

Overview

DescribeUsagePlanSecretIds请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(usageplanid = nil, limit = nil, offset = nil) ⇒ DescribeUsagePlanSecretIdsRequest

Returns a new instance of DescribeUsagePlanSecretIdsRequest.



6008
6009
6010
6011
6012
# File 'lib/v20180808/models.rb', line 6008

def initialize(usageplanid=nil, limit=nil, offset=nil)
  @UsagePlanId = usageplanid
  @Limit = limit
  @Offset = offset
end

Instance Attribute Details

#LimitObject

Parameters:

  • UsagePlanId:

    绑定的使用计划唯一 ID。

  • Limit:

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

  • Offset:

    偏移量,默认为 0。



6006
6007
6008
# File 'lib/v20180808/models.rb', line 6006

def Limit
  @Limit
end

#OffsetObject

Parameters:

  • UsagePlanId:

    绑定的使用计划唯一 ID。

  • Limit:

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

  • Offset:

    偏移量,默认为 0。



6006
6007
6008
# File 'lib/v20180808/models.rb', line 6006

def Offset
  @Offset
end

#UsagePlanIdObject

Parameters:

  • UsagePlanId:

    绑定的使用计划唯一 ID。

  • Limit:

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

  • Offset:

    偏移量,默认为 0。



6006
6007
6008
# File 'lib/v20180808/models.rb', line 6006

def UsagePlanId
  @UsagePlanId
end

Instance Method Details

#deserialize(params) ⇒ Object



6014
6015
6016
6017
6018
# File 'lib/v20180808/models.rb', line 6014

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