modzyClient.getModel
Retrieve model details
modzyClient.getModel(String modelId)
Returns a model's details. It includes the modelId
, latestVersion
, author
, name
, versions
, and tags
.
Parameter
Parameter | Type | Description | Example |
---|---|---|---|
modelId | java.lang.String | A model identifier assigned by Modzy. | "ed542963de" |
Returns
com.modzy.sdk.model.Model
A model object fully populated.
Examples
Model model = modzyClient.getModel("ed542963de");
System.out.println(String.format(" %s", model));
Updated about 2 years ago