Sha256: 97dc1d36bf2c281a376ad0c51416367c12c4e5eeca8a043142ef7631020c5fb8

Contents?: true

Size: 764 Bytes

Versions: 17

Compression:

Stored size: 764 Bytes

Contents

# frozen_string_literal: true
require_relative "../region"
require_relative "../global_region"

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

        property :id, as: :Id, type: Integer
        property :name, as: :Name, type: String
        property :code, as: :Code, type: String
        property :code3, as: :Code3, type: String
        property :description, as: :Description, type: String
        property :global_region, as: :GlobalRegion,
          decorator: Representer::GlobalRegion, class: DataObject::GlobalRegion
        collection :regions, as: :Regions,
          decorator: Representer::Region, class: DataObject::Region
      end
    end
  end
end

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
oneaccess-0.4.4 lib/oneaccess/data_object/representer/country.rb
oneaccess-0.4.3 lib/oneaccess/data_object/representer/country.rb
oneaccess-0.4.2 lib/oneaccess/data_object/representer/country.rb
oneaccess-0.4.1 lib/oneaccess/data_object/representer/country.rb
oneaccess-0.4.0 lib/oneaccess/data_object/representer/country.rb
oneaccess-0.3.0 lib/oneaccess/data_object/representer/country.rb
oneaccess-0.2.0 lib/oneaccess/data_object/representer/country.rb
oneaccess-0.1.9 lib/oneaccess/data_object/representer/country.rb
oneaccess-0.1.8 lib/oneaccess/data_object/representer/country.rb
oneaccess-0.1.7 lib/oneaccess/data_object/representer/country.rb
oneaccess-0.1.6 lib/oneaccess/data_object/representer/country.rb
oneaccess-0.1.5 lib/oneaccess/data_object/representer/country.rb
oneaccess-0.1.4 lib/oneaccess/data_object/representer/country.rb
oneaccess-0.1.3 lib/oneaccess/data_object/representer/country.rb
oneaccess-0.1.2 lib/oneaccess/data_object/representer/country.rb
oneaccess-0.1.1 lib/oneaccess/data_object/representer/country.rb
oneaccess-0.1.0 lib/oneaccess/data_object/representer/country.rb