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

com.azure.communication.rooms.models.ParticipantsCollection 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.models;

import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;

/** Collection of participants in a room. */
@Fluent
public final class ParticipantsCollection {
    /*
     * Room Participants.
     */
    @JsonProperty(value = "participants", required = true)
    private List participants;

    /**
     * Get the participants property: Room Participants.
     *
     * @return the participants value.
     */
    public List getParticipants() {
        return this.participants;
    }

    /**
     * Set the participants property: Room Participants.
     *
     * @param participants the participants value to set.
     * @return the ParticipantsCollection object itself.
     */
    public ParticipantsCollection setParticipants(List participants) {
        this.participants = participants;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy