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

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

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

import lombok.Data;
import lombok.NoArgsConstructor;

@Data
@NoArgsConstructor
public class RegistryModelNotesUpdateRequest {
    private String workspaceName;
    private String registryModelName;
    private String notes;

    public RegistryModelNotesUpdateRequest(String notes, String registryModelName, String workspaceName) {
        this.notes = notes;
        this.registryModelName = registryModelName;
        this.workspaceName = workspaceName;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy