Class: Google::Apis::AdminDirectoryV1::UserLocation

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/admin_directory_v1/classes.rb,
generated/google/apis/admin_directory_v1/representations.rb,
generated/google/apis/admin_directory_v1/representations.rb

Overview

JSON template for a location entry.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ UserLocation

Returns a new instance of UserLocation



3003
3004
3005
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 3003

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#areaString

Textual location. This is most useful for display purposes to concisely describe the location. For example, "Mountain View, CA", "Near Seattle", "US- NYC-9TH 9A209A". Corresponds to the JSON property area

Returns:

  • (String)


2966
2967
2968
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 2966

def area
  @area
end

#building_idString

Building Identifier. Corresponds to the JSON property buildingId

Returns:

  • (String)


2971
2972
2973
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 2971

def building_id
  @building_id
end

#custom_typeString

Custom Type. Corresponds to the JSON property customType

Returns:

  • (String)


2976
2977
2978
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 2976

def custom_type
  @custom_type
end

#desk_codeString

Most specific textual code of individual desk location. Corresponds to the JSON property deskCode

Returns:

  • (String)


2981
2982
2983
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 2981

def desk_code
  @desk_code
end

#floor_nameString

Floor name/number. Corresponds to the JSON property floorName

Returns:

  • (String)


2986
2987
2988
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 2986

def floor_name
  @floor_name
end

#floor_sectionString

Floor section. More specific location within the floor. For example, if a floor is divided into sections "A", "B", and "C", this field would identify one of those values. Corresponds to the JSON property floorSection

Returns:

  • (String)


2993
2994
2995
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 2993

def floor_section
  @floor_section
end

#typeString

Each entry can have a type which indicates standard types of that entry. For example location could be of types default and desk. In addition to standard type, an entry can have a custom type and can give it any name. Such types should have "custom" as type and also have a customType value. Corresponds to the JSON property type

Returns:

  • (String)


3001
3002
3003
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 3001

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3008
3009
3010
3011
3012
3013
3014
3015
3016
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 3008

def update!(**args)
  @area = args[:area] if args.key?(:area)
  @building_id = args[:building_id] if args.key?(:building_id)
  @custom_type = args[:custom_type] if args.key?(:custom_type)
  @desk_code = args[:desk_code] if args.key?(:desk_code)
  @floor_name = args[:floor_name] if args.key?(:floor_name)
  @floor_section = args[:floor_section] if args.key?(:floor_section)
  @type = args[:type] if args.key?(:type)
end