class Google::Apis::JobsV3::DeviceInfo

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.

Attributes

device_type[RW]

Optional. Type of the device. Corresponds to the JSON property `deviceType` @return [String]

id[RW]

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` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/jobs_v3/classes.rb, line 889
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/jobs_v3/classes.rb, line 894
def update!(**args)
  @device_type = args[:device_type] if args.key?(:device_type)
  @id = args[:id] if args.key?(:id)
end