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

com.azure.resourcemanager.botservice.models.SkypeChannelProperties Maven / Gradle / Ivy

Go to download

This package contains Microsoft Azure SDK for BotService Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Azure Bot Service is a platform for creating smart conversational agents. Package tag package-2021-03-01.

There is a newer version: 1.0.0-beta.6
Show newest version
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.

package com.azure.resourcemanager.botservice.models;

import com.azure.core.annotation.Fluent;
import com.azure.core.util.logging.ClientLogger;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;

/** The parameters to provide for the Microsoft Teams channel. */
@Fluent
public final class SkypeChannelProperties {
    @JsonIgnore private final ClientLogger logger = new ClientLogger(SkypeChannelProperties.class);

    /*
     * Enable messaging for Skype channel
     */
    @JsonProperty(value = "enableMessaging")
    private Boolean enableMessaging;

    /*
     * Enable media cards for Skype channel
     */
    @JsonProperty(value = "enableMediaCards")
    private Boolean enableMediaCards;

    /*
     * Enable video for Skype channel
     */
    @JsonProperty(value = "enableVideo")
    private Boolean enableVideo;

    /*
     * Enable calling for Skype channel
     */
    @JsonProperty(value = "enableCalling")
    private Boolean enableCalling;

    /*
     * Enable screen sharing for Skype channel
     */
    @JsonProperty(value = "enableScreenSharing")
    private Boolean enableScreenSharing;

    /*
     * Enable groups for Skype channel
     */
    @JsonProperty(value = "enableGroups")
    private Boolean enableGroups;

    /*
     * Group mode for Skype channel
     */
    @JsonProperty(value = "groupsMode")
    private String groupsMode;

    /*
     * Calling web hook for Skype channel
     */
    @JsonProperty(value = "callingWebHook")
    private String callingWebhook;

    /*
     * Whether this channel is enabled for the bot
     */
    @JsonProperty(value = "isEnabled", required = true)
    private boolean isEnabled;

    /**
     * Get the enableMessaging property: Enable messaging for Skype channel.
     *
     * @return the enableMessaging value.
     */
    public Boolean enableMessaging() {
        return this.enableMessaging;
    }

    /**
     * Set the enableMessaging property: Enable messaging for Skype channel.
     *
     * @param enableMessaging the enableMessaging value to set.
     * @return the SkypeChannelProperties object itself.
     */
    public SkypeChannelProperties withEnableMessaging(Boolean enableMessaging) {
        this.enableMessaging = enableMessaging;
        return this;
    }

    /**
     * Get the enableMediaCards property: Enable media cards for Skype channel.
     *
     * @return the enableMediaCards value.
     */
    public Boolean enableMediaCards() {
        return this.enableMediaCards;
    }

    /**
     * Set the enableMediaCards property: Enable media cards for Skype channel.
     *
     * @param enableMediaCards the enableMediaCards value to set.
     * @return the SkypeChannelProperties object itself.
     */
    public SkypeChannelProperties withEnableMediaCards(Boolean enableMediaCards) {
        this.enableMediaCards = enableMediaCards;
        return this;
    }

    /**
     * Get the enableVideo property: Enable video for Skype channel.
     *
     * @return the enableVideo value.
     */
    public Boolean enableVideo() {
        return this.enableVideo;
    }

    /**
     * Set the enableVideo property: Enable video for Skype channel.
     *
     * @param enableVideo the enableVideo value to set.
     * @return the SkypeChannelProperties object itself.
     */
    public SkypeChannelProperties withEnableVideo(Boolean enableVideo) {
        this.enableVideo = enableVideo;
        return this;
    }

    /**
     * Get the enableCalling property: Enable calling for Skype channel.
     *
     * @return the enableCalling value.
     */
    public Boolean enableCalling() {
        return this.enableCalling;
    }

    /**
     * Set the enableCalling property: Enable calling for Skype channel.
     *
     * @param enableCalling the enableCalling value to set.
     * @return the SkypeChannelProperties object itself.
     */
    public SkypeChannelProperties withEnableCalling(Boolean enableCalling) {
        this.enableCalling = enableCalling;
        return this;
    }

    /**
     * Get the enableScreenSharing property: Enable screen sharing for Skype channel.
     *
     * @return the enableScreenSharing value.
     */
    public Boolean enableScreenSharing() {
        return this.enableScreenSharing;
    }

    /**
     * Set the enableScreenSharing property: Enable screen sharing for Skype channel.
     *
     * @param enableScreenSharing the enableScreenSharing value to set.
     * @return the SkypeChannelProperties object itself.
     */
    public SkypeChannelProperties withEnableScreenSharing(Boolean enableScreenSharing) {
        this.enableScreenSharing = enableScreenSharing;
        return this;
    }

    /**
     * Get the enableGroups property: Enable groups for Skype channel.
     *
     * @return the enableGroups value.
     */
    public Boolean enableGroups() {
        return this.enableGroups;
    }

    /**
     * Set the enableGroups property: Enable groups for Skype channel.
     *
     * @param enableGroups the enableGroups value to set.
     * @return the SkypeChannelProperties object itself.
     */
    public SkypeChannelProperties withEnableGroups(Boolean enableGroups) {
        this.enableGroups = enableGroups;
        return this;
    }

    /**
     * Get the groupsMode property: Group mode for Skype channel.
     *
     * @return the groupsMode value.
     */
    public String groupsMode() {
        return this.groupsMode;
    }

    /**
     * Set the groupsMode property: Group mode for Skype channel.
     *
     * @param groupsMode the groupsMode value to set.
     * @return the SkypeChannelProperties object itself.
     */
    public SkypeChannelProperties withGroupsMode(String groupsMode) {
        this.groupsMode = groupsMode;
        return this;
    }

    /**
     * Get the callingWebhook property: Calling web hook for Skype channel.
     *
     * @return the callingWebhook value.
     */
    public String callingWebhook() {
        return this.callingWebhook;
    }

    /**
     * Set the callingWebhook property: Calling web hook for Skype channel.
     *
     * @param callingWebhook the callingWebhook value to set.
     * @return the SkypeChannelProperties object itself.
     */
    public SkypeChannelProperties withCallingWebhook(String callingWebhook) {
        this.callingWebhook = callingWebhook;
        return this;
    }

    /**
     * Get the isEnabled property: Whether this channel is enabled for the bot.
     *
     * @return the isEnabled value.
     */
    public boolean isEnabled() {
        return this.isEnabled;
    }

    /**
     * Set the isEnabled property: Whether this channel is enabled for the bot.
     *
     * @param isEnabled the isEnabled value to set.
     * @return the SkypeChannelProperties object itself.
     */
    public SkypeChannelProperties withIsEnabled(boolean isEnabled) {
        this.isEnabled = isEnabled;
        return this;
    }

    /**
     * Validates the instance.
     *
     * @throws IllegalArgumentException thrown if the instance is not valid.
     */
    public void validate() {
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy