Class UserToken.Tracking.Builder
-
- All Implemented Interfaces:
public final class UserToken.Tracking.BuilderA builder for Tracking.
-
-
Method Summary
-
-
Method Detail
-
ip
final UserToken.Tracking.Builder ip(String ip)
The IP address of the device
-
ip
final UserToken.Tracking.Builder ip(Optional<String> ip)
Alias for calling Builder.ip with
ip.orElse(null).
-
ip
final UserToken.Tracking.Builder ip(JsonField<String> ip)
Sets Builder.ip to an arbitrary JSON value.
You should usually call Builder.ip with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
lat
final UserToken.Tracking.Builder lat(String lat)
The latitude of the device
-
lat
final UserToken.Tracking.Builder lat(Optional<String> lat)
Alias for calling Builder.lat with
lat.orElse(null).
-
lat
final UserToken.Tracking.Builder lat(JsonField<String> lat)
Sets Builder.lat to an arbitrary JSON value.
You should usually call Builder.lat with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
long_
final UserToken.Tracking.Builder long_(String long_)
The longitude of the device
-
long_
final UserToken.Tracking.Builder long_(Optional<String> long_)
Alias for calling Builder.long_ with
long_.orElse(null).
-
long_
final UserToken.Tracking.Builder long_(JsonField<String> long_)
Sets Builder.long_ to an arbitrary JSON value.
You should usually call Builder.long_ with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
osVersion
final UserToken.Tracking.Builder osVersion(String osVersion)
The operating system version
-
osVersion
final UserToken.Tracking.Builder osVersion(Optional<String> osVersion)
Alias for calling Builder.osVersion with
osVersion.orElse(null).
-
osVersion
final UserToken.Tracking.Builder osVersion(JsonField<String> osVersion)
Sets Builder.osVersion to an arbitrary JSON value.
You should usually call Builder.osVersion with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final UserToken.Tracking.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final UserToken.Tracking.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final UserToken.Tracking.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final UserToken.Tracking.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final UserToken.Tracking.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final UserToken.Tracking build()
Returns an immutable instance of Tracking.
Further updates to this Builder will not mutate the returned instance.
-
-
-
-