Class: TencentCloud::Ses::V20201002::UpdateEmailSmtpPassWordRequest

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

Overview

UpdateEmailSmtpPassWord请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(password = nil, emailaddress = nil) ⇒ UpdateEmailSmtpPassWordRequest

Returns a new instance of UpdateEmailSmtpPassWordRequest.



2108
2109
2110
2111
# File 'lib/v20201002/models.rb', line 2108

def initialize(password=nil, emailaddress=nil)
  @Password = password
  @EmailAddress = emailaddress
end

Instance Attribute Details

#EmailAddressObject

Parameters:

  • Password:

    smtp密码,长度限制64

  • EmailAddress:

    发信邮箱,长度限制128



2106
2107
2108
# File 'lib/v20201002/models.rb', line 2106

def EmailAddress
  @EmailAddress
end

#PasswordObject

Parameters:

  • Password:

    smtp密码,长度限制64

  • EmailAddress:

    发信邮箱,长度限制128



2106
2107
2108
# File 'lib/v20201002/models.rb', line 2106

def Password
  @Password
end

Instance Method Details

#deserialize(params) ⇒ Object



2113
2114
2115
2116
# File 'lib/v20201002/models.rb', line 2113

def deserialize(params)
  @Password = params['Password']
  @EmailAddress = params['EmailAddress']
end