com.azure.resourcemanager.healthbot.models.OperationDisplay 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.core.annotation.Fluent;
import com.azure.json.JsonReader;
import com.azure.json.JsonSerializable;
import com.azure.json.JsonToken;
import com.azure.json.JsonWriter;
import java.io.IOException;
/**
* Operation display payload.
*/
@Fluent
public final class OperationDisplay implements JsonSerializable {
/*
* Resource provider of the operation
*/
private String provider;
/*
* Resource of the operation
*/
private String resource;
/*
* Localized friendly name for the operation
*/
private String operation;
/*
* Localized friendly description for the operation
*/
private String description;
/**
* Creates an instance of OperationDisplay class.
*/
public OperationDisplay() {
}
/**
* Get the provider property: Resource provider of the operation.
*
* @return the provider value.
*/
public String provider() {
return this.provider;
}
/**
* Set the provider property: Resource provider of the operation.
*
* @param provider the provider value to set.
* @return the OperationDisplay object itself.
*/
public OperationDisplay withProvider(String provider) {
this.provider = provider;
return this;
}
/**
* Get the resource property: Resource of the operation.
*
* @return the resource value.
*/
public String resource() {
return this.resource;
}
/**
* Set the resource property: Resource of the operation.
*
* @param resource the resource value to set.
* @return the OperationDisplay object itself.
*/
public OperationDisplay withResource(String resource) {
this.resource = resource;
return this;
}
/**
* Get the operation property: Localized friendly name for the operation.
*
* @return the operation value.
*/
public String operation() {
return this.operation;
}
/**
* Set the operation property: Localized friendly name for the operation.
*
* @param operation the operation value to set.
* @return the OperationDisplay object itself.
*/
public OperationDisplay withOperation(String operation) {
this.operation = operation;
return this;
}
/**
* Get the description property: Localized friendly description for the operation.
*
* @return the description value.
*/
public String description() {
return this.description;
}
/**
* Set the description property: Localized friendly description for the operation.
*
* @param description the description value to set.
* @return the OperationDisplay object itself.
*/
public OperationDisplay withDescription(String description) {
this.description = description;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
}
/**
* {@inheritDoc}
*/
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeStringField("provider", this.provider);
jsonWriter.writeStringField("resource", this.resource);
jsonWriter.writeStringField("operation", this.operation);
jsonWriter.writeStringField("description", this.description);
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of OperationDisplay from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of OperationDisplay if the JsonReader was pointing to an instance of it, or null if it was
* pointing to JSON null.
* @throws IOException If an error occurs while reading the OperationDisplay.
*/
public static OperationDisplay fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
OperationDisplay deserializedOperationDisplay = new OperationDisplay();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("provider".equals(fieldName)) {
deserializedOperationDisplay.provider = reader.getString();
} else if ("resource".equals(fieldName)) {
deserializedOperationDisplay.resource = reader.getString();
} else if ("operation".equals(fieldName)) {
deserializedOperationDisplay.operation = reader.getString();
} else if ("description".equals(fieldName)) {
deserializedOperationDisplay.description = reader.getString();
} else {
reader.skipChildren();
}
}
return deserializedOperationDisplay;
});
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy