Class: TencentCloud::Ses::V20201002::UpdateEmailIdentityResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ses::V20201002::UpdateEmailIdentityResponse
- Defined in:
- lib/v20201002/models.rb
Overview
UpdateEmailIdentity返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(identitytype = nil, verifiedforsendingstatus = nil, attributes = nil, requestid = nil) ⇒ UpdateEmailIdentityResponse
constructor
A new instance of UpdateEmailIdentityResponse.
Constructor Details
#initialize(identitytype = nil, verifiedforsendingstatus = nil, attributes = nil, requestid = nil) ⇒ UpdateEmailIdentityResponse
Returns a new instance of UpdateEmailIdentityResponse.
2359 2360 2361 2362 2363 2364 |
# File 'lib/v20201002/models.rb', line 2359 def initialize(identitytype=nil, verifiedforsendingstatus=nil, attributes=nil, requestid=nil) @IdentityType = identitytype @VerifiedForSendingStatus = verifiedforsendingstatus @Attributes = attributes @RequestId = requestid end |
Instance Attribute Details
#Attributes ⇒ Object
2357 2358 2359 |
# File 'lib/v20201002/models.rb', line 2357 def Attributes @Attributes end |
#IdentityType ⇒ Object
2357 2358 2359 |
# File 'lib/v20201002/models.rb', line 2357 def IdentityType @IdentityType end |
#RequestId ⇒ Object
2357 2358 2359 |
# File 'lib/v20201002/models.rb', line 2357 def RequestId @RequestId end |
#VerifiedForSendingStatus ⇒ Object
2357 2358 2359 |
# File 'lib/v20201002/models.rb', line 2357 def VerifiedForSendingStatus @VerifiedForSendingStatus end |
Instance Method Details
#deserialize(params) ⇒ Object
2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 |
# File 'lib/v20201002/models.rb', line 2366 def deserialize(params) @IdentityType = params['IdentityType'] @VerifiedForSendingStatus = params['VerifiedForSendingStatus'] unless params['Attributes'].nil? @Attributes = [] params['Attributes'].each do |i| dnsattributes_tmp = DNSAttributes.new dnsattributes_tmp.deserialize(i) @Attributes << dnsattributes_tmp end end @RequestId = params['RequestId'] end |