![JAR search and dependency download from the Maven repository](/logo.png)
com.azure.communication.chat.implementation.models.AddChatParticipantsResult 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.Immutable;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
/** Result of the add chat participants operation. */
@Immutable
public final class AddChatParticipantsResult {
/*
* The participants that failed to be added to the chat thread.
*/
@JsonProperty(value = "invalidParticipants", access = JsonProperty.Access.WRITE_ONLY)
private List invalidParticipants;
/**
* Get the invalidParticipants property: The participants that failed to be added to the chat thread.
*
* @return the invalidParticipants value.
*/
public List getInvalidParticipants() {
return this.invalidParticipants;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy