Class: Google::Apis::JobsV3::DeviceInfo

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

Overview

Device information collected from the job seeker, candidate, or other entity conducting the job search. Providing this information improves the quality of the search results across devices.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ DeviceInfo

Returns a new instance of DeviceInfo.



890
891
892
# File 'lib/google/apis/jobs_v3/classes.rb', line 890

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

Instance Attribute Details

#device_typeString

Optional. Type of the device. Corresponds to the JSON property deviceType

Returns:

  • (String)


882
883
884
# File 'lib/google/apis/jobs_v3/classes.rb', line 882

def device_type
  @device_type
end

#idString

Optional. A device-specific ID. The ID must be a unique identifier that distinguishes the device from other devices. Corresponds to the JSON property id

Returns:

  • (String)


888
889
890
# File 'lib/google/apis/jobs_v3/classes.rb', line 888

def id
  @id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



895
896
897
898
# File 'lib/google/apis/jobs_v3/classes.rb', line 895

def update!(**args)
  @device_type = args[:device_type] if args.key?(:device_type)
  @id = args[:id] if args.key?(:id)
end