com.pulumi.googlenative.dialogflow.v2beta1.enums.GoogleCloudDialogflowV2beta1IntentMessageRbmStandaloneCardCardOrientation 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.dialogflow.v2beta1.enums;
import com.pulumi.core.annotations.EnumType;
import java.lang.String;
import java.util.Objects;
import java.util.StringJoiner;
/**
* Required. Orientation of the card.
*
*/
@EnumType
public enum GoogleCloudDialogflowV2beta1IntentMessageRbmStandaloneCardCardOrientation {
/**
* Not specified.
*
*/
CardOrientationUnspecified("CARD_ORIENTATION_UNSPECIFIED"),
/**
* Horizontal layout.
*
*/
Horizontal("HORIZONTAL"),
/**
* Vertical layout.
*
*/
Vertical("VERTICAL");
private final String value;
GoogleCloudDialogflowV2beta1IntentMessageRbmStandaloneCardCardOrientation(String value) {
this.value = Objects.requireNonNull(value);
}
@EnumType.Converter
public String getValue() {
return this.value;
}
@Override
public String toString() {
return new StringJoiner(", ", "GoogleCloudDialogflowV2beta1IntentMessageRbmStandaloneCardCardOrientation[", "]")
.add("value='" + this.value + "'")
.toString();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy