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

com.pulumi.googlenative.dialogflow.v2.enums.IntentDefaultResponsePlatformsItem 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.v2.enums;

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

    @EnumType
    public enum IntentDefaultResponsePlatformsItem {
        /**
         * Default platform.
         * 
         */
        PlatformUnspecified("PLATFORM_UNSPECIFIED"),
        /**
         * Facebook.
         * 
         */
        Facebook("FACEBOOK"),
        /**
         * Slack.
         * 
         */
        Slack("SLACK"),
        /**
         * Telegram.
         * 
         */
        Telegram("TELEGRAM"),
        /**
         * Kik.
         * 
         */
        Kik("KIK"),
        /**
         * Skype.
         * 
         */
        Skype("SKYPE"),
        /**
         * Line.
         * 
         */
        Line("LINE"),
        /**
         * Viber.
         * 
         */
        Viber("VIBER"),
        /**
         * Google Assistant See [Dialogflow webhook format](https://developers.google.com/assistant/actions/build/json/dialogflow-webhook-json)
         * 
         */
        ActionsOnGoogle("ACTIONS_ON_GOOGLE"),
        /**
         * Google Hangouts.
         * 
         */
        GoogleHangouts("GOOGLE_HANGOUTS");

        private final String value;

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy