Class: Google::Cloud::Talent::V4::DeviceInfo
- Inherits:
-
Object
- Object
- Google::Cloud::Talent::V4::DeviceInfo
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/talent/v4/common.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.
Defined Under Namespace
Modules: DeviceType
Instance Attribute Summary collapse
-
#device_type ⇒ ::Google::Cloud::Talent::V4::DeviceInfo::DeviceType
Type of the device.
-
#id ⇒ ::String
A device-specific ID.
Instance Attribute Details
#device_type ⇒ ::Google::Cloud::Talent::V4::DeviceInfo::DeviceType
Returns Type of the device.
200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 |
# File 'proto_docs/google/cloud/talent/v4/common.rb', line 200 class DeviceInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # An enumeration describing an API access portal and exposure mechanism. module DeviceType # The device type isn't specified. DEVICE_TYPE_UNSPECIFIED = 0 # A desktop web browser, such as, Chrome, Firefox, Safari, or Internet # Explorer) WEB = 1 # A mobile device web browser, such as a phone or tablet with a Chrome # browser. MOBILE_WEB = 2 # An Android device native application. ANDROID = 3 # An iOS device native application. IOS = 4 # A bot, as opposed to a device operated by human beings, such as a web # crawler. BOT = 5 # Other devices types. OTHER = 6 end end |
#id ⇒ ::String
Returns A device-specific ID. The ID must be a unique identifier that distinguishes the device from other devices.
200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 |
# File 'proto_docs/google/cloud/talent/v4/common.rb', line 200 class DeviceInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # An enumeration describing an API access portal and exposure mechanism. module DeviceType # The device type isn't specified. DEVICE_TYPE_UNSPECIFIED = 0 # A desktop web browser, such as, Chrome, Firefox, Safari, or Internet # Explorer) WEB = 1 # A mobile device web browser, such as a phone or tablet with a Chrome # browser. MOBILE_WEB = 2 # An Android device native application. ANDROID = 3 # An iOS device native application. IOS = 4 # A bot, as opposed to a device operated by human beings, such as a web # crawler. BOT = 5 # Other devices types. OTHER = 6 end end |