class Google::Apis::JobsV3p1beta1::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_v3p1beta1/classes.rb, line 928 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_v3p1beta1/classes.rb, line 933 def update!(**args) @device_type = args[:device_type] if args.key?(:device_type) @id = args[:id] if args.key?(:id) end