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

ml.comet.experiment.registrymodel.ModelRegistryRecord Maven / Gradle / Ivy

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

import lombok.Data;

/**
 * Holds information about created/updated model registry record.
 */
@Data
public class ModelRegistryRecord {
    private String registryName;
    private String registryModelId;
    private String registryModelItemId;

    public ModelRegistryRecord(String registryModelId, String registryModelItemId) {
        this.registryModelId = registryModelId;
        this.registryModelItemId = registryModelItemId;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy