All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.azure.resourcemanager.botservice.models.Omnichannel Maven / Gradle / Ivy

Go to download

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;

/**
 * Omnichannel channel definition.
 */
@Fluent
public final class Omnichannel extends Channel {
    /*
     * The channel name
     */
    private String channelName = "Omnichannel";

    /*
     * Provisioning state of the resource
     */
    private String provisioningState;

    /**
     * Creates an instance of Omnichannel class.
     */
    public Omnichannel() {
    }

    /**
     * Get the channelName property: The channel name.
     * 
     * @return the channelName value.
     */
    @Override
    public String channelName() {
        return this.channelName;
    }

    /**
     * Get the provisioningState property: Provisioning state of the resource.
     * 
     * @return the provisioningState value.
     */
    @Override
    public String provisioningState() {
        return this.provisioningState;
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public Omnichannel withEtag(String etag) {
        super.withEtag(etag);
        return this;
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public Omnichannel withLocation(String location) {
        super.withLocation(location);
        return this;
    }

    /**
     * Validates the instance.
     * 
     * @throws IllegalArgumentException thrown if the instance is not valid.
     */
    @Override
    public void 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);
        return jsonWriter.writeEndObject();
    }

    /**
     * Reads an instance of Omnichannel from the JsonReader.
     * 
     * @param jsonReader The JsonReader being read.
     * @return An instance of Omnichannel 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 Omnichannel.
     */
    public static Omnichannel fromJson(JsonReader jsonReader) throws IOException {
        return jsonReader.readObject(reader -> {
            Omnichannel deserializedOmnichannel = new Omnichannel();
            while (reader.nextToken() != JsonToken.END_OBJECT) {
                String fieldName = reader.getFieldName();
                reader.nextToken();

                if ("etag".equals(fieldName)) {
                    deserializedOmnichannel.withEtag(reader.getString());
                } else if ("provisioningState".equals(fieldName)) {
                    deserializedOmnichannel.provisioningState = reader.getString();
                } else if ("location".equals(fieldName)) {
                    deserializedOmnichannel.withLocation(reader.getString());
                } else if ("channelName".equals(fieldName)) {
                    deserializedOmnichannel.channelName = reader.getString();
                } else {
                    reader.skipChildren();
                }
            }

            return deserializedOmnichannel;
        });
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy