Class: Io::Flow::V0::Models::FraudEmailRule

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ FraudEmailRule

Returns a new instance of FraudEmailRule.



33856
33857
33858
33859
33860
33861
33862
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33856

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

#decisionObject (readonly)

Returns the value of attribute decision.



33854
33855
33856
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33854

def decision
  @decision
end

#emailObject (readonly)

Returns the value of attribute email.



33854
33855
33856
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33854

def email
  @email
end

#idObject (readonly)

Returns the value of attribute id.



33854
33855
33856
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33854

def id
  @id
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



33868
33869
33870
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33868

def copy(incoming={})
  FraudEmailRule.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming)))
end

#to_hashObject



33872
33873
33874
33875
33876
33877
33878
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33872

def to_hash
  {
    :id => id,
    :email => email,
    :decision => decision.value
  }
end

#to_jsonObject



33864
33865
33866
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33864

def to_json
  JSON.dump(to_hash)
end