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 white-listing and black-listing for an email address.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ FraudEmailRule

Returns a new instance of FraudEmailRule.



32865
32866
32867
32868
32869
32870
32871
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32865

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.



32863
32864
32865
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32863

def decision
  @decision
end

#emailObject (readonly)

Returns the value of attribute email.



32863
32864
32865
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32863

def email
  @email
end

#idObject (readonly)

Returns the value of attribute id.



32863
32864
32865
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32863

def id
  @id
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



32877
32878
32879
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32877

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

#to_hashObject



32881
32882
32883
32884
32885
32886
32887
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32881

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

#to_jsonObject



32873
32874
32875
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32873

def to_json
  JSON.dump(to_hash)
end