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.
2077 2078 2079 2080 2081 2082 |
# File 'lib/v20201002/models.rb', line 2077 def initialize(identitytype=nil, verifiedforsendingstatus=nil, attributes=nil, requestid=nil) @IdentityType = identitytype @VerifiedForSendingStatus = verifiedforsendingstatus @Attributes = attributes @RequestId = requestid end |
Instance Attribute Details
#Attributes ⇒ Object
2075 2076 2077 |
# File 'lib/v20201002/models.rb', line 2075 def Attributes @Attributes end |
#IdentityType ⇒ Object
2075 2076 2077 |
# File 'lib/v20201002/models.rb', line 2075 def IdentityType @IdentityType end |
#RequestId ⇒ Object
2075 2076 2077 |
# File 'lib/v20201002/models.rb', line 2075 def RequestId @RequestId end |
#VerifiedForSendingStatus ⇒ Object
2075 2076 2077 |
# File 'lib/v20201002/models.rb', line 2075 def VerifiedForSendingStatus @VerifiedForSendingStatus end |
Instance Method Details
#deserialize(params) ⇒ Object
2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 |
# File 'lib/v20201002/models.rb', line 2084 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 |