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

ml.comet.experiment.impl.rest.RegistryModelItemCreateResponse 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 lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import ml.comet.experiment.registrymodel.ModelRegistryRecord;

@JsonIgnoreProperties(ignoreUnknown = true)
@NoArgsConstructor
@AllArgsConstructor
@Data
public class RegistryModelItemCreateResponse {
    private String registryModelId;
    private String registryModelItemId;

    public ModelRegistryRecord toModelRegistry() {
        return new ModelRegistryRecord(this.registryModelId, this.registryModelItemId);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy