com.azure.resourcemanager.healthbot.implementation.OperationDetailImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-healthbot Show documentation
Show all versions of azure-resourcemanager-healthbot Show documentation
This package contains Microsoft Azure SDK for Healthbot Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Microsoft Healthcare Bot is a cloud platform that empowers developers in Healthcare organizations to build and deploy their compliant, AI-powered virtual health assistants and health bots, that help them improve processes and reduce costs. Package tag package-2020-12-08.
The 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.healthbot.implementation;
import com.azure.resourcemanager.healthbot.fluent.models.OperationDetailInner;
import com.azure.resourcemanager.healthbot.models.OperationDetail;
import com.azure.resourcemanager.healthbot.models.OperationDisplay;
public final class OperationDetailImpl implements OperationDetail {
private OperationDetailInner innerObject;
private final com.azure.resourcemanager.healthbot.HealthbotManager serviceManager;
OperationDetailImpl(OperationDetailInner innerObject,
com.azure.resourcemanager.healthbot.HealthbotManager serviceManager) {
this.innerObject = innerObject;
this.serviceManager = serviceManager;
}
public String name() {
return this.innerModel().name();
}
public Boolean isDataAction() {
return this.innerModel().isDataAction();
}
public OperationDisplay display() {
return this.innerModel().display();
}
public String origin() {
return this.innerModel().origin();
}
public Object properties() {
return this.innerModel().properties();
}
public OperationDetailInner innerModel() {
return this.innerObject;
}
private com.azure.resourcemanager.healthbot.HealthbotManager manager() {
return this.serviceManager;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy