Class: RockRMS::Response::Location

Inherits:
Base
  • Object
show all
Defined in:
lib/rock_rms/response/location.rb

Constant Summary collapse

MAP =
{
  name: 'Name',
  is_active: 'IsActive',
  street1: 'Street1',
  street2: 'Street2',
  city: 'City',
  county: 'County',
  state: 'State',
  country: 'Country',
  postal_code: 'PostalCode',
  latitude: 'Latitude',
  longitude: 'Longitude',
  guid: 'Guid'
}.freeze

Constants inherited from Base

Base::BASE_MAPPING

Instance Attribute Summary

Attributes inherited from Base

#data

Instance Method Summary collapse

Methods inherited from Base

format, #format, #format_attributes, #initialize, #to_h

Constructor Details

This class inherits a constructor from RockRMS::Response::Base

Instance Method Details

#format_single(data) ⇒ Object



19
20
21
# File 'lib/rock_rms/response/location.rb', line 19

def format_single(data)
  to_h(MAP, data)
end