Class: TencentCloud::Apigateway::V20180808::UpdateApiAppKeyRequest

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

Overview

UpdateApiAppKey请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(apiappid = nil, apiappkey = nil, apiappsecret = nil) ⇒ UpdateApiAppKeyRequest

Returns a new instance of UpdateApiAppKeyRequest.



9406
9407
9408
9409
9410
# File 'lib/v20180808/models.rb', line 9406

def initialize(apiappid=nil, apiappkey=nil, apiappsecret=nil)
  @ApiAppId = apiappid
  @ApiAppKey = apiappkey
  @ApiAppSecret = apiappsecret
end

Instance Attribute Details

#ApiAppIdObject

Parameters:

  • ApiAppId:

    应用唯一 ID。

  • ApiAppKey:

    应用的Key。

  • ApiAppSecret:

    应用的Secret。



9404
9405
9406
# File 'lib/v20180808/models.rb', line 9404

def ApiAppId
  @ApiAppId
end

#ApiAppKeyObject

Parameters:

  • ApiAppId:

    应用唯一 ID。

  • ApiAppKey:

    应用的Key。

  • ApiAppSecret:

    应用的Secret。



9404
9405
9406
# File 'lib/v20180808/models.rb', line 9404

def ApiAppKey
  @ApiAppKey
end

#ApiAppSecretObject

Parameters:

  • ApiAppId:

    应用唯一 ID。

  • ApiAppKey:

    应用的Key。

  • ApiAppSecret:

    应用的Secret。



9404
9405
9406
# File 'lib/v20180808/models.rb', line 9404

def ApiAppSecret
  @ApiAppSecret
end

Instance Method Details

#deserialize(params) ⇒ Object



9412
9413
9414
9415
9416
# File 'lib/v20180808/models.rb', line 9412

def deserialize(params)
  @ApiAppId = params['ApiAppId']
  @ApiAppKey = params['ApiAppKey']
  @ApiAppSecret = params['ApiAppSecret']
end