Class: TencentCloud::Ses::V20201002::GetEmailIdentityResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ses::V20201002::GetEmailIdentityResponse
- Defined in:
- lib/v20201002/models.rb
Overview
GetEmailIdentity返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(identitytype = nil, verifiedforsendingstatus = nil, attributes = nil, requestid = nil) ⇒ GetEmailIdentityResponse
constructor
A new instance of GetEmailIdentityResponse.
Constructor Details
#initialize(identitytype = nil, verifiedforsendingstatus = nil, attributes = nil, requestid = nil) ⇒ GetEmailIdentityResponse
Returns a new instance of GetEmailIdentityResponse.
865 866 867 868 869 870 |
# File 'lib/v20201002/models.rb', line 865 def initialize(identitytype=nil, verifiedforsendingstatus=nil, attributes=nil, requestid=nil) @IdentityType = identitytype @VerifiedForSendingStatus = verifiedforsendingstatus @Attributes = attributes @RequestId = requestid end |
Instance Attribute Details
#Attributes ⇒ Object
863 864 865 |
# File 'lib/v20201002/models.rb', line 863 def Attributes @Attributes end |
#IdentityType ⇒ Object
863 864 865 |
# File 'lib/v20201002/models.rb', line 863 def IdentityType @IdentityType end |
#RequestId ⇒ Object
863 864 865 |
# File 'lib/v20201002/models.rb', line 863 def RequestId @RequestId end |
#VerifiedForSendingStatus ⇒ Object
863 864 865 |
# File 'lib/v20201002/models.rb', line 863 def VerifiedForSendingStatus @VerifiedForSendingStatus end |
Instance Method Details
#deserialize(params) ⇒ Object
872 873 874 875 876 877 878 879 880 881 882 883 884 |
# File 'lib/v20201002/models.rb', line 872 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 |