private static interface PhotoSettingModel.Service
Modifier and Type | Method and Description |
---|---|
retrofit2.Call<com.google.gson.JsonObject> |
getBaseSetting(java.lang.String accessToken) |
retrofit2.Call<com.google.gson.JsonObject> |
getExtendSettings(java.lang.String accessToken) |
retrofit2.Call<com.google.gson.JsonObject> |
setBaseSettings(okhttp3.RequestBody body) |
retrofit2.Call<com.google.gson.JsonObject> |
setExtendSettings(okhttp3.RequestBody accessToken) |
@GET(value="app/setting/photo/mode/get/{accessToken}") retrofit2.Call<com.google.gson.JsonObject> getBaseSetting(@Path(value="accessToken") java.lang.String accessToken)
@POST(value="app/setting/photo/mode/set") retrofit2.Call<com.google.gson.JsonObject> setBaseSettings(@Body okhttp3.RequestBody body)
@GET(value="app/setting/photo/get/{accessToken}") retrofit2.Call<com.google.gson.JsonObject> getExtendSettings(@Path(value="accessToken") java.lang.String accessToken)
@POST(value="app/setting/photo/set") retrofit2.Call<com.google.gson.JsonObject> setExtendSettings(@Body okhttp3.RequestBody accessToken)