com.pulumi.googlenative.contactcenterinsights.v1.outputs.GoogleCloudContactcenterinsightsV1ConversationLevelSentimentResponse 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 com.pulumi.googlenative.contactcenterinsights.v1.outputs.GoogleCloudContactcenterinsightsV1SentimentDataResponse;
import java.lang.Integer;
import java.util.Objects;
@CustomType
public final class GoogleCloudContactcenterinsightsV1ConversationLevelSentimentResponse {
/**
* @return The channel of the audio that the data applies to.
*
*/
private Integer channelTag;
/**
* @return Data specifying sentiment.
*
*/
private GoogleCloudContactcenterinsightsV1SentimentDataResponse sentimentData;
private GoogleCloudContactcenterinsightsV1ConversationLevelSentimentResponse() {}
/**
* @return The channel of the audio that the data applies to.
*
*/
public Integer channelTag() {
return this.channelTag;
}
/**
* @return Data specifying sentiment.
*
*/
public GoogleCloudContactcenterinsightsV1SentimentDataResponse sentimentData() {
return this.sentimentData;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GoogleCloudContactcenterinsightsV1ConversationLevelSentimentResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private Integer channelTag;
private GoogleCloudContactcenterinsightsV1SentimentDataResponse sentimentData;
public Builder() {}
public Builder(GoogleCloudContactcenterinsightsV1ConversationLevelSentimentResponse defaults) {
Objects.requireNonNull(defaults);
this.channelTag = defaults.channelTag;
this.sentimentData = defaults.sentimentData;
}
@CustomType.Setter
public Builder channelTag(Integer channelTag) {
this.channelTag = Objects.requireNonNull(channelTag);
return this;
}
@CustomType.Setter
public Builder sentimentData(GoogleCloudContactcenterinsightsV1SentimentDataResponse sentimentData) {
this.sentimentData = Objects.requireNonNull(sentimentData);
return this;
}
public GoogleCloudContactcenterinsightsV1ConversationLevelSentimentResponse build() {
final var o = new GoogleCloudContactcenterinsightsV1ConversationLevelSentimentResponse();
o.channelTag = channelTag;
o.sentimentData = sentimentData;
return o;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy