Class: Attune::Model::BlacklistSaveResponse

Inherits:
Object
  • Object
show all
Defined in:
lib/attune/models/blacklist_save_response.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ BlacklistSaveResponse

Returns a new instance of BlacklistSaveResponse.



14
15
16
17
18
19
20
21
22
# File 'lib/attune/models/blacklist_save_response.rb', line 14

def initialize(attributes = {})
  return if attributes.empty?
  # Workaround since JSON.parse has accessors as strings rather than symbols
  @id = attributes["id"] || attributes[:"id"]
  # Workaround since JSON.parse has accessors as strings rather than symbols
  @result = attributes["result"] || attributes[:"result"]
  

end

Instance Attribute Details

#idString

Returns the current value of id.

Returns:

  • (String)

    the current value of id



7
8
9
# File 'lib/attune/models/blacklist_save_response.rb', line 7

def id
  @id
end

#resultString

Returns the current value of result.

Returns:

  • (String)

    the current value of result



7
8
9
# File 'lib/attune/models/blacklist_save_response.rb', line 7

def result
  @result
end

Instance Method Details

#to_bodyObject



24
25
26
27
28
29
# File 'lib/attune/models/blacklist_save_response.rb', line 24

def to_body
  Hash[ATTRIBUTE_MAP.map do |internal, external|
    next unless value = send(internal)
    [external, value]
  end.compact]
end

#to_json(options = {}) ⇒ Object



31
32
33
# File 'lib/attune/models/blacklist_save_response.rb', line 31

def to_json(options = {})
  to_body.to_json
end