public interface Models
| Modifier and Type | Method and Description |
|---|---|
ModelsV3 |
delete(ModelKeyV3 model_id) |
ModelsV3 |
deleteAll() |
ModelExportV3 |
exportModel(ModelKeyV3 model_id) |
ModelsV3 |
fetch(ModelKeyV3 model_id) |
StreamingSchema |
fetchJavaCode(ModelKeyV3 model_id) |
StreamingSchema |
fetchPreview(ModelKeyV3 model_id) |
ModelsV3 |
importModel(ModelImportV3 parms) |
ModelsV3 |
list() |
@GET(value="/3/Models/{modelid}")
ModelsV3 fetch(ModelKeyV3 model_id)
@GET(value="/3/Models") ModelsV3 list()
@DELETE(value="/3/Models/{modelid}")
ModelsV3 delete(ModelKeyV3 model_id)
@DELETE(value="/3/Models") ModelsV3 deleteAll()
@GET(value="/3/Models.java/{modelid}/preview")
StreamingSchema fetchPreview(ModelKeyV3 model_id)
@GET(value="/3/Models.java/{modelid}")
StreamingSchema fetchJavaCode(ModelKeyV3 model_id)
@Headers(value="Content-Type: application/x-www-form-urlencoded; charset=UTF-8")
@POST(value="/99/Models.bin/{modelid}")
ModelsV3 importModel(ModelImportV3 parms)
@GET(value="/99/Models.bin/{modelid}")
ModelExportV3 exportModel(ModelKeyV3 model_id)