Sha256: f42d02b9a2ed1e7de19a6ff46d9cd11c721e60115d4cbacbd15bc49aaf01cd15

Contents?: true

Size: 581 Bytes

Versions: 1

Compression:

Stored size: 581 Bytes

Contents

module ISACA
  module Model
    class GetUserDetailsByToken
      attr_accessor :imis_id
      attr_accessor :enterprise_id
      attr_accessor :first_name
      attr_accessor :last_name
      attr_accessor :email
      attr_accessor :username
      attr_accessor :country

      def initialize(hash)
        @imis_id = hash['ID']
        @enterprise_id = hash['Ent_ID']
        @first_name = hash['First_Name']
        @last_name = hash['Last_Name']
        @email = hash['Email']
        @username = hash['UserName']
        @country = hash['Country']
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
isaca-0.1.6 lib/isaca/models/get_user_details_by_token.rb