Class: TencentCloud::Ses::V20201002::BlackEmailAddress
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ses::V20201002::BlackEmailAddress
- Defined in:
- lib/v20201002/models.rb
Overview
邮箱黑名单结构,包含被拉黑的邮箱地址和被拉黑时间,以及被拉黑的理由
Instance Attribute Summary collapse
-
#BounceTime ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#EmailAddress ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#IspDesc ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(bouncetime = nil, emailaddress = nil, ispdesc = nil) ⇒ BlackEmailAddress
constructor
A new instance of BlackEmailAddress.
Constructor Details
#initialize(bouncetime = nil, emailaddress = nil, ispdesc = nil) ⇒ BlackEmailAddress
Returns a new instance of BlackEmailAddress.
187 188 189 190 191 |
# File 'lib/v20201002/models.rb', line 187 def initialize(bouncetime=nil, emailaddress=nil, ispdesc=nil) @BounceTime = bouncetime @EmailAddress = emailaddress @IspDesc = ispdesc end |
Instance Attribute Details
#BounceTime ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
185 186 187 |
# File 'lib/v20201002/models.rb', line 185 def BounceTime @BounceTime end |
#EmailAddress ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
185 186 187 |
# File 'lib/v20201002/models.rb', line 185 def EmailAddress @EmailAddress end |
#IspDesc ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
185 186 187 |
# File 'lib/v20201002/models.rb', line 185 def IspDesc @IspDesc end |
Instance Method Details
#deserialize(params) ⇒ Object
193 194 195 196 197 |
# File 'lib/v20201002/models.rb', line 193 def deserialize(params) @BounceTime = params['BounceTime'] @EmailAddress = params['EmailAddress'] @IspDesc = params['IspDesc'] end |