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.



33465
33466
33467
33468
33469
33470
33471
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33465

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.



33463
33464
33465
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33463

def decision
  @decision
end

#emailObject (readonly)

Returns the value of attribute email.



33463
33464
33465
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33463

def email
  @email
end

#idObject (readonly)

Returns the value of attribute id.



33463
33464
33465
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33463

def id
  @id
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



33477
33478
33479
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33477

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

#to_hashObject



33481
33482
33483
33484
33485
33486
33487
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33481

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

#to_jsonObject



33473
33474
33475
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33473

def to_json
  JSON.dump(to_hash)
end