class UsabillaApi::Models::Apps::Feedback::GeoLocation

Attributes

city[RW]
country[RW]
lat[RW]
lon[RW]
region[RW]

Public Class Methods

new(args = {}) click to toggle source
# File lib/usabilla_api/models/apps/feedback/geo_location.rb, line 8
def initialize(args = {})
  @city      = args['city']      || ''
  @country   = args['country']   || ''
  @lat       = args['lat']       || nil
  @lon       = args['lon']       || nil
  @region    = args['region']    || ''
end