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

com.azure.communication.chat.implementation.models.AddChatParticipantsOptions Maven / Gradle / Ivy

There is a newer version: 1.5.7
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.chat.implementation.models;

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

/** Participants to be added to the thread. */
@Fluent
public final class AddChatParticipantsOptions {
    /*
     * Participants to add to a chat thread.
     */
    @JsonProperty(value = "participants", required = true)
    private List participants;

    /**
     * Get the participants property: Participants to add to a chat thread.
     *
     * @return the participants value.
     */
    public List getParticipants() {
        return this.participants;
    }

    /**
     * Set the participants property: Participants to add to a chat thread.
     *
     * @param participants the participants value to set.
     * @return the AddChatParticipantsOptions object itself.
     */
    public AddChatParticipantsOptions setParticipants(List participants) {
        this.participants = participants;
        return this;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy