public interface SessionProperties
| Modifier and Type | Method and Description |
|---|---|
retrofit2.Call<SessionPropertyV3> |
getSessionProperty() |
retrofit2.Call<SessionPropertyV3> |
getSessionProperty(java.lang.String session_key,
java.lang.String key,
java.lang.String value,
java.lang.String _exclude_fields)
Get session property.
|
retrofit2.Call<SessionPropertyV3> |
setSessionProperty() |
retrofit2.Call<SessionPropertyV3> |
setSessionProperty(java.lang.String session_key,
java.lang.String key,
java.lang.String value,
java.lang.String _exclude_fields)
Set session property.
|
@FormUrlEncoded @POST(value="/3/SessionProperties") retrofit2.Call<SessionPropertyV3> setSessionProperty(@Field(value="session_key") java.lang.String session_key, @Field(value="key") java.lang.String key, @Field(value="value") java.lang.String value, @Field(value="_exclude_fields") java.lang.String _exclude_fields)
session_key - Session IDkey - Property Keyvalue - Property Value_exclude_fields - Comma-separated list of JSON field paths to exclude from the result, used like:
"/3/Frames?_exclude_fields=frames/frame_id/URL,__meta"@FormUrlEncoded @POST(value="/3/SessionProperties") retrofit2.Call<SessionPropertyV3> setSessionProperty()
@GET(value="/3/SessionProperties") retrofit2.Call<SessionPropertyV3> getSessionProperty(@Query(value="session_key") java.lang.String session_key, @Query(value="key") java.lang.String key, @Query(value="value") java.lang.String value, @Query(value="_exclude_fields") java.lang.String _exclude_fields)
session_key - Session IDkey - Property Keyvalue - Property Value_exclude_fields - Comma-separated list of JSON field paths to exclude from the result, used like:
"/3/Frames?_exclude_fields=frames/frame_id/URL,__meta"@GET(value="/3/SessionProperties") retrofit2.Call<SessionPropertyV3> getSessionProperty()