Class: Io::Flow::V0::Models::FraudEmailRule
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::FraudEmailRule
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Overview
Rule to apply to enable allow-listing and deny-listing for an email address.
Instance Attribute Summary collapse
-
#decision ⇒ Object
readonly
Returns the value of attribute decision.
-
#email ⇒ Object
readonly
Returns the value of attribute email.
-
#id ⇒ Object
readonly
Returns the value of attribute id.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ FraudEmailRule
constructor
A new instance of FraudEmailRule.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ FraudEmailRule
Returns a new instance of FraudEmailRule.
43348 43349 43350 43351 43352 43353 43354 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 43348 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:email, :decision], 'FraudEmailRule') @id = (x = opts.delete(:id); x.nil? ? nil : HttpClient::Preconditions.assert_class('id', x, String)) @email = HttpClient::Preconditions.assert_class('email', opts.delete(:email), String) @decision = (x = opts.delete(:decision); x.is_a?(::Io::Flow::V0::Models::FraudEmailRuleDecision) ? x : ::Io::Flow::V0::Models::FraudEmailRuleDecision.apply(x)) end |
Instance Attribute Details
#decision ⇒ Object (readonly)
Returns the value of attribute decision.
43346 43347 43348 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 43346 def decision @decision end |
#email ⇒ Object (readonly)
Returns the value of attribute email.
43346 43347 43348 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 43346 def email @email end |
#id ⇒ Object (readonly)
Returns the value of attribute id.
43346 43347 43348 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 43346 def id @id end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
43360 43361 43362 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 43360 def copy(incoming={}) FraudEmailRule.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
43364 43365 43366 43367 43368 43369 43370 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 43364 def to_hash { :id => id, :email => email, :decision => decision.value } end |
#to_json ⇒ Object
43356 43357 43358 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 43356 def to_json JSON.dump(to_hash) end |