com.azure.communication.rooms.implementation.models.UpdateParticipantsRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-communication-rooms Show documentation
Show all versions of azure-communication-rooms Show documentation
This package contains clients and data structures used to create, update, get, delete the Azure Communication Room Service.
For this release, see notes
Microsoft Azure Communication Rooms quickstart
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.communication.rooms.implementation.models;
import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Map;
/** Participants to be updated in the room. */
@Fluent
public final class UpdateParticipantsRequest {
/*
* Participants to be updated.
*/
@JsonProperty(value = "participants")
private Map participants;
/** Creates an instance of UpdateParticipantsRequest class. */
public UpdateParticipantsRequest() {}
/**
* Get the participants property: Participants to be updated.
*
* @return the participants value.
*/
public Map getParticipants() {
return this.participants;
}
/**
* Set the participants property: Participants to be updated.
*
* @param participants the participants value to set.
* @return the UpdateParticipantsRequest object itself.
*/
public UpdateParticipantsRequest setParticipants(Map participants) {
this.participants = participants;
return this;
}
}