com.azure.resourcemanager.botservice.models.TelephonyChannel 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.models;
import com.azure.core.annotation.Fluent;
import com.azure.json.JsonReader;
import com.azure.json.JsonToken;
import com.azure.json.JsonWriter;
import java.io.IOException;
/**
* Telephony channel definition.
*/
@Fluent
public final class TelephonyChannel extends Channel {
/*
* The channel name
*/
private String channelName = "TelephonyChannel";
/*
* The set of properties specific to Telephony channel resource
*/
private TelephonyChannelProperties properties;
/*
* Provisioning state of the resource
*/
private String provisioningState;
/**
* Creates an instance of TelephonyChannel class.
*/
public TelephonyChannel() {
}
/**
* Get the channelName property: The channel name.
*
* @return the channelName value.
*/
@Override
public String channelName() {
return this.channelName;
}
/**
* Get the properties property: The set of properties specific to Telephony channel resource.
*
* @return the properties value.
*/
public TelephonyChannelProperties properties() {
return this.properties;
}
/**
* Set the properties property: The set of properties specific to Telephony channel resource.
*
* @param properties the properties value to set.
* @return the TelephonyChannel object itself.
*/
public TelephonyChannel withProperties(TelephonyChannelProperties properties) {
this.properties = properties;
return this;
}
/**
* Get the provisioningState property: Provisioning state of the resource.
*
* @return the provisioningState value.
*/
@Override
public String provisioningState() {
return this.provisioningState;
}
/**
* {@inheritDoc}
*/
@Override
public TelephonyChannel withEtag(String etag) {
super.withEtag(etag);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public TelephonyChannel withLocation(String location) {
super.withLocation(location);
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
@Override
public void validate() {
if (properties() != null) {
properties().validate();
}
}
/**
* {@inheritDoc}
*/
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeStringField("etag", etag());
jsonWriter.writeStringField("location", location());
jsonWriter.writeStringField("channelName", this.channelName);
jsonWriter.writeJsonField("properties", this.properties);
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of TelephonyChannel from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of TelephonyChannel 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 TelephonyChannel.
*/
public static TelephonyChannel fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
TelephonyChannel deserializedTelephonyChannel = new TelephonyChannel();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("etag".equals(fieldName)) {
deserializedTelephonyChannel.withEtag(reader.getString());
} else if ("provisioningState".equals(fieldName)) {
deserializedTelephonyChannel.provisioningState = reader.getString();
} else if ("location".equals(fieldName)) {
deserializedTelephonyChannel.withLocation(reader.getString());
} else if ("channelName".equals(fieldName)) {
deserializedTelephonyChannel.channelName = reader.getString();
} else if ("properties".equals(fieldName)) {
deserializedTelephonyChannel.properties = TelephonyChannelProperties.fromJson(reader);
} else {
reader.skipChildren();
}
}
return deserializedTelephonyChannel;
});
}
}