Package com.google.cloud.talent.v4beta1
Interface DeviceInfoOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
DeviceInfo
,DeviceInfo.Builder
public interface DeviceInfoOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DeviceInfo.DeviceType
getDeviceType()
Type of the device.int
getDeviceTypeValue()
Type of the device.String
getId()
A device-specific ID.com.google.protobuf.ByteString
getIdBytes()
A device-specific ID.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getDeviceTypeValue
int getDeviceTypeValue()
Type of the device.
.google.cloud.talent.v4beta1.DeviceInfo.DeviceType device_type = 1;
- Returns:
- The enum numeric value on the wire for deviceType.
-
getDeviceType
DeviceInfo.DeviceType getDeviceType()
Type of the device.
.google.cloud.talent.v4beta1.DeviceInfo.DeviceType device_type = 1;
- Returns:
- The deviceType.
-
getId
String getId()
A device-specific ID. The ID must be a unique identifier that distinguishes the device from other devices.
string id = 2;
- Returns:
- The id.
-
getIdBytes
com.google.protobuf.ByteString getIdBytes()
A device-specific ID. The ID must be a unique identifier that distinguishes the device from other devices.
string id = 2;
- Returns:
- The bytes for id.
-
-