Sha256: c0c1bab152fe707cc0bbadee226511b85e8376276e91e858df146f042bcca7eb
Contents?: true
Size: 912 Bytes
Versions: 2
Compression:
Stored size: 912 Bytes
Contents
# frozen_string_literal: true require_relative '../organization_light' require_relative '../address' module ONEAccess module DataObject module Representer class User < Representable::Decorator include Representable::JSON property :id, as: :Id, type: Integer property :first_name, as: :FirstName, type: String property :last_name, as: :LastName, type: String property :email, as: :Email, type: String property :phone, as: :Phone, type: String property :type, as: :Type, type: Integer property :active, as: :Active property :organization, as: :Organization, decorator: Representer::OrganizationLight, class: DataObject::OrganizationLight property :address, as: :Address, decorator: Representer::Address, class: DataObject::Address end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
oneaccess-1.3.1 | lib/oneaccess/data_object/representer/user.rb |
oneaccess-1.3.0 | lib/oneaccess/data_object/representer/user.rb |