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

com.pulumi.googlenative.integrations.v1alpha.outputs.EnterpriseCrmFrontendsEventbusProtoDoubleParameterArrayResponse 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.integrations.v1alpha.outputs;

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

@CustomType
public final class EnterpriseCrmFrontendsEventbusProtoDoubleParameterArrayResponse {
    private List doubleValues;

    private EnterpriseCrmFrontendsEventbusProtoDoubleParameterArrayResponse() {}
    public List doubleValues() {
        return this.doubleValues;
    }

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

    public static Builder builder(EnterpriseCrmFrontendsEventbusProtoDoubleParameterArrayResponse defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private List doubleValues;
        public Builder() {}
        public Builder(EnterpriseCrmFrontendsEventbusProtoDoubleParameterArrayResponse defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.doubleValues = defaults.doubleValues;
        }

        @CustomType.Setter
        public Builder doubleValues(List doubleValues) {
            this.doubleValues = Objects.requireNonNull(doubleValues);
            return this;
        }
        public Builder doubleValues(Double... doubleValues) {
            return doubleValues(List.of(doubleValues));
        }
        public EnterpriseCrmFrontendsEventbusProtoDoubleParameterArrayResponse build() {
            final var o = new EnterpriseCrmFrontendsEventbusProtoDoubleParameterArrayResponse();
            o.doubleValues = doubleValues;
            return o;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy