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.



32135
32136
32137
32138
32139
32140
32141
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32135

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.



32133
32134
32135
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32133

def decision
  @decision
end

#emailObject (readonly)

Returns the value of attribute email.



32133
32134
32135
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32133

def email
  @email
end

#idObject (readonly)

Returns the value of attribute id.



32133
32134
32135
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32133

def id
  @id
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



32147
32148
32149
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32147

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

#to_hashObject



32151
32152
32153
32154
32155
32156
32157
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32151

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

#to_jsonObject



32143
32144
32145
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32143

def to_json
  JSON.dump(to_hash)
end