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

com.pulumi.googlenative.contactcenterinsights.v1.outputs.GoogleCloudContactcenterinsightsV1GcsSourceResponse 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.contactcenterinsights.v1.outputs;

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

@CustomType
public final class GoogleCloudContactcenterinsightsV1GcsSourceResponse {
    /**
     * @return Cloud Storage URI that points to a file that contains the conversation audio.
     * 
     */
    private String audioUri;
    /**
     * @return Immutable. Cloud Storage URI that points to a file that contains the conversation transcript.
     * 
     */
    private String transcriptUri;

    private GoogleCloudContactcenterinsightsV1GcsSourceResponse() {}
    /**
     * @return Cloud Storage URI that points to a file that contains the conversation audio.
     * 
     */
    public String audioUri() {
        return this.audioUri;
    }
    /**
     * @return Immutable. Cloud Storage URI that points to a file that contains the conversation transcript.
     * 
     */
    public String transcriptUri() {
        return this.transcriptUri;
    }

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

    public static Builder builder(GoogleCloudContactcenterinsightsV1GcsSourceResponse defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private String audioUri;
        private String transcriptUri;
        public Builder() {}
        public Builder(GoogleCloudContactcenterinsightsV1GcsSourceResponse defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.audioUri = defaults.audioUri;
    	      this.transcriptUri = defaults.transcriptUri;
        }

        @CustomType.Setter
        public Builder audioUri(String audioUri) {
            this.audioUri = Objects.requireNonNull(audioUri);
            return this;
        }
        @CustomType.Setter
        public Builder transcriptUri(String transcriptUri) {
            this.transcriptUri = Objects.requireNonNull(transcriptUri);
            return this;
        }
        public GoogleCloudContactcenterinsightsV1GcsSourceResponse build() {
            final var o = new GoogleCloudContactcenterinsightsV1GcsSourceResponse();
            o.audioUri = audioUri;
            o.transcriptUri = transcriptUri;
            return o;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy