com.azure.resourcemanager.healthbot.models.OperationDetail 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.models;
import com.azure.resourcemanager.healthbot.fluent.models.OperationDetailInner;
/**
* An immutable client-side representation of OperationDetail.
*/
public interface OperationDetail {
/**
* Gets the name property: Name of the operation.
*
* @return the name value.
*/
String name();
/**
* Gets the isDataAction property: Indicates whether the operation is a data action.
*
* @return the isDataAction value.
*/
Boolean isDataAction();
/**
* Gets the display property: Display of the operation.
*
* @return the display value.
*/
OperationDisplay display();
/**
* Gets the origin property: Origin of the operation.
*
* @return the origin value.
*/
String origin();
/**
* Gets the properties property: Additional properties.
*
* @return the properties value.
*/
Object properties();
/**
* Gets the inner com.azure.resourcemanager.healthbot.fluent.models.OperationDetailInner object.
*
* @return the inner object.
*/
OperationDetailInner innerModel();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy