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

com.pulumi.googlenative.dialogflow.v2beta1.enums.GoogleCloudDialogflowV2beta1IntentMessageRbmCardContentRbmMediaHeight 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 for cards with vertical orientation. The height of the media within a rich card with a vertical layout. For a standalone card with horizontal layout, height is not customizable, and this field is ignored.
     * 
     */
    @EnumType
    public enum GoogleCloudDialogflowV2beta1IntentMessageRbmCardContentRbmMediaHeight {
        /**
         * Not specified.
         * 
         */
        HeightUnspecified("HEIGHT_UNSPECIFIED"),
        /**
         * 112 DP.
         * 
         */
        Short("SHORT"),
        /**
         * 168 DP.
         * 
         */
        Medium("MEDIUM"),
        /**
         * 264 DP. Not available for rich card carousels when the card width is set to small.
         * 
         */
        Tall("TALL");

        private final String value;

        GoogleCloudDialogflowV2beta1IntentMessageRbmCardContentRbmMediaHeight(String value) {
            this.value = Objects.requireNonNull(value);
        }

        @EnumType.Converter
        public String getValue() {
            return this.value;
        }

        @Override
        public String toString() {
            return new StringJoiner(", ", "GoogleCloudDialogflowV2beta1IntentMessageRbmCardContentRbmMediaHeight[", "]")
                .add("value='" + this.value + "'")
                .toString();
        }
    }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy