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

com.azure.communication.rooms.implementation.models.UpdateParticipantsRequest Maven / Gradle / Ivy

Go to download

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

There is a newer version: 1.1.5
Show newest version
// 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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy