Sha256: e110f055d78e276ce1595e8a9777306b5acadbe6b36089d33e51864a819260da

Contents?: true

Size: 769 Bytes

Versions: 6

Compression:

Stored size: 769 Bytes

Contents

# frozen_string_literal: true

require_relative "../country"
require_relative "../region"

module ONEAccess
  module DataObject
    module Representer
      class City < Representable::Decorator
        include Representable::JSON

        property :id, as: :Id, type: Integer
        property :name, as: :Name, type: String
        property :code, as: :Code, type: String
        property :description, as: :Description, type: String
        property :longitude, as: :Longitude, type: Float
        property :latitude, as: :Type, type: Float
        property :country, as: :Country, decorator: Representer::Country, class: DataObject::Country
        property :region, as: :Region, decorator: Representer::Region, class: DataObject::Region
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
oneaccess-1.2.0 lib/oneaccess/data_object/representer/city.rb
oneaccess-1.1.0 lib/oneaccess/data_object/representer/city.rb
oneaccess-1.0.1 lib/oneaccess/data_object/representer/city.rb
oneaccess-1.0.0 lib/oneaccess/data_object/representer/city.rb
oneaccess-0.5.0 lib/oneaccess/data_object/representer/city.rb
oneaccess-0.4.5 lib/oneaccess/data_object/representer/city.rb