![JAR search and dependency download from the Maven repository](/logo.png)
com.azure.communication.chat.implementation.models.CommunicationErrorResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-communication-chat Show documentation
Show all versions of azure-communication-chat Show documentation
This package contains a Java SDK for Chat Azure Communication Services.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.communication.chat.implementation.models;
import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonProperty;
/** The Communication Services error. */
@Fluent
public final class CommunicationErrorResponse {
/*
* The Communication Services error.
*/
@JsonProperty(value = "error", required = true)
private CommunicationError error;
/**
* Get the error property: The Communication Services error.
*
* @return the error value.
*/
public CommunicationError getError() {
return this.error;
}
/**
* Set the error property: The Communication Services error.
*
* @param error the error value to set.
* @return the CommunicationErrorResponse object itself.
*/
public CommunicationErrorResponse setError(CommunicationError error) {
this.error = error;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy