com.pulumi.googlenative.contactcenterinsights.v1.enums.GoogleCloudContactcenterinsightsV1IssueModelInputDataConfigMedium 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.enums;
import com.pulumi.core.annotations.EnumType;
import java.lang.String;
import java.util.Objects;
import java.util.StringJoiner;
/**
* Medium of conversations used in training data. This field is being deprecated. To specify the medium to be used in training a new issue model, set the `medium` field on `filter`.
*
*/
@EnumType
public enum GoogleCloudContactcenterinsightsV1IssueModelInputDataConfigMedium {
/**
* Default value, if unspecified will default to PHONE_CALL.
*
*/
MediumUnspecified("MEDIUM_UNSPECIFIED"),
/**
* The format for conversations that took place over the phone.
*
*/
PhoneCall("PHONE_CALL"),
/**
* The format for conversations that took place over chat.
*
*/
Chat("CHAT");
private final String value;
GoogleCloudContactcenterinsightsV1IssueModelInputDataConfigMedium(String value) {
this.value = Objects.requireNonNull(value);
}
@EnumType.Converter
public String getValue() {
return this.value;
}
@Override
public String toString() {
return new StringJoiner(", ", "GoogleCloudContactcenterinsightsV1IssueModelInputDataConfigMedium[", "]")
.add("value='" + this.value + "'")
.toString();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy