public interface InitID
| Modifier and Type | Method and Description |
|---|---|
retrofit2.Call<InitIDV3> |
endSession() |
retrofit2.Call<InitIDV3> |
endSession(java.lang.String session_key,
java.lang.String _exclude_fields)
End a session.
|
retrofit2.Call<InitIDV3> |
startSession() |
retrofit2.Call<InitIDV3> |
startSession(java.lang.String session_key,
java.lang.String _exclude_fields)
Issue a new session ID.
|
@GET(value="/3/InitID") retrofit2.Call<InitIDV3> startSession(@Field(value="session_key") java.lang.String session_key, @Field(value="_exclude_fields") java.lang.String _exclude_fields)
session_key - Session ID_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/InitID") retrofit2.Call<InitIDV3> startSession()
@DELETE(value="/3/InitID") retrofit2.Call<InitIDV3> endSession(@Field(value="session_key") java.lang.String session_key, @Field(value="_exclude_fields") java.lang.String _exclude_fields)
session_key - Session ID_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"@DELETE(value="/3/InitID") retrofit2.Call<InitIDV3> endSession()