com.azure.communication.rooms.implementation.models.RemoveParticipantsRequest Maven / Gradle / Ivy
// 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.List;
/** Participants to be removed from a room. */
@Fluent
public final class RemoveParticipantsRequest {
/*
* Participants to be removed from a room.
*/
@JsonProperty(value = "participants", required = true)
private List participants;
/**
* Get the participants property: Participants to be removed from a room.
*
* @return the participants value.
*/
public List getParticipants() {
return this.participants;
}
/**
* Set the participants property: Participants to be removed from a room.
*
* @param participants the participants value to set.
* @return the RemoveParticipantsRequest object itself.
*/
public RemoveParticipantsRequest setParticipants(List participants) {
this.participants = participants;
return this;
}
}