com.azure.resourcemanager.botservice.fluent.models.CheckNameAvailabilityResponseBodyInner Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-botservice Show documentation
Show all versions of azure-resourcemanager-botservice Show documentation
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.
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.botservice.fluent.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;
/**
* The response body returned for a request to Bot Service Management to check availability of a bot name.
*/
@Fluent
public final class CheckNameAvailabilityResponseBodyInner
implements JsonSerializable {
/*
* indicates if the bot name is valid.
*/
private Boolean valid;
/*
* additional message from the bot management api showing why a bot name is not available
*/
private String message;
/*
* response code from ABS
*/
private String absCode;
/**
* Creates an instance of CheckNameAvailabilityResponseBodyInner class.
*/
public CheckNameAvailabilityResponseBodyInner() {
}
/**
* Get the valid property: indicates if the bot name is valid.
*
* @return the valid value.
*/
public Boolean valid() {
return this.valid;
}
/**
* Set the valid property: indicates if the bot name is valid.
*
* @param valid the valid value to set.
* @return the CheckNameAvailabilityResponseBodyInner object itself.
*/
public CheckNameAvailabilityResponseBodyInner withValid(Boolean valid) {
this.valid = valid;
return this;
}
/**
* Get the message property: additional message from the bot management api showing why a bot name is not available.
*
* @return the message value.
*/
public String message() {
return this.message;
}
/**
* Set the message property: additional message from the bot management api showing why a bot name is not available.
*
* @param message the message value to set.
* @return the CheckNameAvailabilityResponseBodyInner object itself.
*/
public CheckNameAvailabilityResponseBodyInner withMessage(String message) {
this.message = message;
return this;
}
/**
* Get the absCode property: response code from ABS.
*
* @return the absCode value.
*/
public String absCode() {
return this.absCode;
}
/**
* Set the absCode property: response code from ABS.
*
* @param absCode the absCode value to set.
* @return the CheckNameAvailabilityResponseBodyInner object itself.
*/
public CheckNameAvailabilityResponseBodyInner withAbsCode(String absCode) {
this.absCode = absCode;
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.writeBooleanField("valid", this.valid);
jsonWriter.writeStringField("message", this.message);
jsonWriter.writeStringField("absCode", this.absCode);
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of CheckNameAvailabilityResponseBodyInner from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of CheckNameAvailabilityResponseBodyInner 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 CheckNameAvailabilityResponseBodyInner.
*/
public static CheckNameAvailabilityResponseBodyInner fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
CheckNameAvailabilityResponseBodyInner deserializedCheckNameAvailabilityResponseBodyInner
= new CheckNameAvailabilityResponseBodyInner();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("valid".equals(fieldName)) {
deserializedCheckNameAvailabilityResponseBodyInner.valid
= reader.getNullable(JsonReader::getBoolean);
} else if ("message".equals(fieldName)) {
deserializedCheckNameAvailabilityResponseBodyInner.message = reader.getString();
} else if ("absCode".equals(fieldName)) {
deserializedCheckNameAvailabilityResponseBodyInner.absCode = reader.getString();
} else {
reader.skipChildren();
}
}
return deserializedCheckNameAvailabilityResponseBodyInner;
});
}
}