All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ml.comet.experiment.impl.rest.RegistryModelOverview Maven / Gradle / Ivy

There is a newer version: 1.1.14
Show newest version
package ml.comet.experiment.impl.rest;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
import lombok.NoArgsConstructor;

@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonIgnoreProperties(ignoreUnknown = true)
@NoArgsConstructor
@Data
public class RegistryModelOverview {
    private String registryModelId;
    private String modelName;
    private String description;
    private long numberOfVersions;
    @JsonProperty("isPublic")
    private boolean isPublic;
    private RegistryModelItemOverview latestVersion;
    private String imagePath;
    private String userName;
    private long createdAt;
    private long lastUpdated;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy