Class: JSS::ManagementHistory::UserLocationChange

Inherits:
Object
  • Object
show all
Includes:
HashLike
Defined in:
lib/jss/api_object/management_history/user_location_change.rb

Overview

UserLocationChange - a change in a device’s assigned user or location

This should only be instantiated by the ManagementHistory.user_location_history method when mixed in to Computers or Mobile devices.

That method will return an array of these objects.

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#buildingString (readonly)

Returns The building for this change.

Returns:

  • (String)

    The building for this change



# File 'lib/jss/api_object/management_history/user_location_change.rb', line 50

#date_time_epochInteger (readonly)

Returns When the change occurred.

Returns:

  • (Integer)

    When the change occurred



# File 'lib/jss/api_object/management_history/user_location_change.rb', line 28

#departmentString (readonly) Also known as: dept

Returns The department for this change.

Returns:

  • (String)

    The department for this change



48
# File 'lib/jss/api_object/management_history/user_location_change.rb', line 48

alias dept department

#email_addressString (readonly) Also known as: email

Returns The email_address for this change.

Returns:

  • (String)

    The email_address for this change



40
# File 'lib/jss/api_object/management_history/user_location_change.rb', line 40

alias email email_address

#full_nameString (readonly)

Returns The user’s full name for this change.

Returns:

  • (String)

    The user’s full name for this change



# File 'lib/jss/api_object/management_history/user_location_change.rb', line 34

#phone_numberString (readonly)

Returns The phone_number for this change.

Returns:

  • (String)

    The phone_number for this change



# File 'lib/jss/api_object/management_history/user_location_change.rb', line 42

#positionString (readonly)

Returns The position for this change.

Returns:

  • (String)

    The position for this change



# File 'lib/jss/api_object/management_history/user_location_change.rb', line 56

#roomString (readonly)

Returns The room for this change.

Returns:

  • (String)

    The room for this change



# File 'lib/jss/api_object/management_history/user_location_change.rb', line 53

#usernameString (readonly)

Returns The username for this change.

Returns:

  • (String)

    The username for this change



# File 'lib/jss/api_object/management_history/user_location_change.rb', line 31

Instance Method Details

#[](attr) ⇒ Object Originally defined in module HashLike

#date_timeTime

Returns When the change occurred, as a ruby Time object.

Returns:

  • (Time)

    When the change occurred, as a ruby Time object



61
62
63
# File 'lib/jss/api_object/management_history/user_location_change.rb', line 61

def date_time
  JSS.epoch_to_time @date_time_epoch if @date_time_epoch
end