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

com.pulumi.googlenative.datalabeling.v1beta1.outputs.GoogleCloudDatalabelingV1beta1ClassificationMetadataResponse Maven / Gradle / Ivy

// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***

package com.pulumi.googlenative.datalabeling.v1beta1.outputs;

import com.pulumi.core.annotations.CustomType;
import java.lang.Boolean;
import java.util.Objects;

@CustomType
public final class GoogleCloudDatalabelingV1beta1ClassificationMetadataResponse {
    /**
     * @return Whether the classification task is multi-label or not.
     * 
     */
    private Boolean isMultiLabel;

    private GoogleCloudDatalabelingV1beta1ClassificationMetadataResponse() {}
    /**
     * @return Whether the classification task is multi-label or not.
     * 
     */
    public Boolean isMultiLabel() {
        return this.isMultiLabel;
    }

    public static Builder builder() {
        return new Builder();
    }

    public static Builder builder(GoogleCloudDatalabelingV1beta1ClassificationMetadataResponse defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private Boolean isMultiLabel;
        public Builder() {}
        public Builder(GoogleCloudDatalabelingV1beta1ClassificationMetadataResponse defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.isMultiLabel = defaults.isMultiLabel;
        }

        @CustomType.Setter
        public Builder isMultiLabel(Boolean isMultiLabel) {
            this.isMultiLabel = Objects.requireNonNull(isMultiLabel);
            return this;
        }
        public GoogleCloudDatalabelingV1beta1ClassificationMetadataResponse build() {
            final var o = new GoogleCloudDatalabelingV1beta1ClassificationMetadataResponse();
            o.isMultiLabel = isMultiLabel;
            return o;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy