| java.lang.Object |
| ↳ |
com.glia.androidsdk.visitor.VisitorInfoUpdateRequest.Builder |
Class Overview
Used for creating the VisitorInfoUpdateRequest.
If some visitor information is not set or is null then it will not be updated on the server.
Usage example:
LinkedTreeMap customAttributes = new LinkedTreeMap<>();
customAttributes.put("age", "21+");
customAttributes.put("custom_id", "H5AC76");
Glia.updateVisitorInfo(
new VisitorInfoUpdateRequest.Builder()
.setName("Mr. Example Man")
.setEmail("mr.example.man@email.com")
.setCustomAttributes(customAttributes)
.build(),
error -> { /* Handle callback */ }
);
Summary
|
[Expand]
Inherited Methods |
From class
java.lang.Object
|
boolean
|
equals(Object arg0)
|
|
final
Class<?>
|
getClass()
|
|
int
|
hashCode()
|
|
final
void
|
notify()
|
|
final
void
|
notifyAll()
|
|
String
|
toString()
|
|
final
void
|
wait(long arg0, int arg1)
|
|
final
void
|
wait(long arg0)
|
|
final
void
|
wait()
|
|
Public Constructors
Public Methods