public interface LogAndEcho
| Modifier and Type | Method and Description |
|---|---|
retrofit2.Call<LogAndEchoV3> |
echo() |
retrofit2.Call<LogAndEchoV3> |
echo(java.lang.String message,
java.lang.String _exclude_fields)
Save a message to the H2O logfile.
|
@FormUrlEncoded @POST(value="/3/LogAndEcho") retrofit2.Call<LogAndEchoV3> echo(@Field(value="message") java.lang.String message, @Field(value="_exclude_fields") java.lang.String _exclude_fields)
message - Message to be Logged and Echoed_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/LogAndEcho") retrofit2.Call<LogAndEchoV3> echo()