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

com.microsoft.bot.connector.customizations.BotCredentials Maven / Gradle / Ivy

The newest version!
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

package com.microsoft.bot.connector.customizations;

public class BotCredentials {
    protected String appId;
    protected String appPassword;

    public String appId() { return this.appId; }

    public String appPassword() { return this.appPassword; }

    public BotCredentials withAppId(String appId) {
        this.appId = appId;
        return this;
    }

    public BotCredentials withAppPassword(String appPassword) {
        this.appPassword = appPassword;
        return this;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy