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

com.azure.communication.rooms.implementation.models.RoomModel 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.communication.rooms.models.RoomJoinPolicy;
import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.time.OffsetDateTime;
import java.util.List;

/** The meeting room. */
@Fluent
public final class RoomModel {
    /*
     * Unique identifier of a room. This id is server generated.
     */
    @JsonProperty(value = "id")
    private String id;

    /*
     * The timestamp when the room was created at the server. The timestamp is
     * in RFC3339 format: `yyyy-MM-ddTHH:mm:ssZ`.
     */
    @JsonProperty(value = "createdDateTime")
    private OffsetDateTime createdDateTime;

    /*
     * The timestamp from when the room is open for joining. The timestamp is
     * in RFC3339 format: `yyyy-MM-ddTHH:mm:ssZ`.
     */
    @JsonProperty(value = "validFrom")
    private OffsetDateTime validFrom;

    /*
     * The timestamp from when the room can no longer be joined. The timestamp
     * is in RFC3339 format: `yyyy-MM-ddTHH:mm:ssZ`.
     */
    @JsonProperty(value = "validUntil")
    private OffsetDateTime validUntil;

    /*
     * The Policy based on which Participants can join a room.
     */
    @JsonProperty(value = "roomJoinPolicy")
    private RoomJoinPolicy roomJoinPolicy;

    /*
     * Collection of room participants.
     */
    @JsonProperty(value = "participants")
    private List participants;

    /**
     * Get the id property: Unique identifier of a room. This id is server generated.
     *
     * @return the id value.
     */
    public String getId() {
        return this.id;
    }

    /**
     * Set the id property: Unique identifier of a room. This id is server generated.
     *
     * @param id the id value to set.
     * @return the RoomModel object itself.
     */
    public RoomModel setId(String id) {
        this.id = id;
        return this;
    }

    /**
     * Get the createdDateTime property: The timestamp when the room was created at the server. The timestamp is in
     * RFC3339 format: `yyyy-MM-ddTHH:mm:ssZ`.
     *
     * @return the createdDateTime value.
     */
    public OffsetDateTime getCreatedDateTime() {
        return this.createdDateTime;
    }

    /**
     * Set the createdDateTime property: The timestamp when the room was created at the server. The timestamp is in
     * RFC3339 format: `yyyy-MM-ddTHH:mm:ssZ`.
     *
     * @param createdDateTime the createdDateTime value to set.
     * @return the RoomModel object itself.
     */
    public RoomModel setCreatedDateTime(OffsetDateTime createdDateTime) {
        this.createdDateTime = createdDateTime;
        return this;
    }

    /**
     * Get the validFrom property: The timestamp from when the room is open for joining. The timestamp is in RFC3339
     * format: `yyyy-MM-ddTHH:mm:ssZ`.
     *
     * @return the validFrom value.
     */
    public OffsetDateTime getValidFrom() {
        return this.validFrom;
    }

    /**
     * Set the validFrom property: The timestamp from when the room is open for joining. The timestamp is in RFC3339
     * format: `yyyy-MM-ddTHH:mm:ssZ`.
     *
     * @param validFrom the validFrom value to set.
     * @return the RoomModel object itself.
     */
    public RoomModel setValidFrom(OffsetDateTime validFrom) {
        this.validFrom = validFrom;
        return this;
    }

    /**
     * Get the validUntil property: The timestamp from when the room can no longer be joined. The timestamp is in
     * RFC3339 format: `yyyy-MM-ddTHH:mm:ssZ`.
     *
     * @return the validUntil value.
     */
    public OffsetDateTime getValidUntil() {
        return this.validUntil;
    }

    /**
     * Set the validUntil property: The timestamp from when the room can no longer be joined. The timestamp is in
     * RFC3339 format: `yyyy-MM-ddTHH:mm:ssZ`.
     *
     * @param validUntil the validUntil value to set.
     * @return the RoomModel object itself.
     */
    public RoomModel setValidUntil(OffsetDateTime validUntil) {
        this.validUntil = validUntil;
        return this;
    }

    /**
     * Get the roomJoinPolicy property: The Policy based on which Participants can join a room.
     *
     * @return the roomJoinPolicy value.
     */
    public RoomJoinPolicy getRoomJoinPolicy() {
        return this.roomJoinPolicy;
    }

    /**
     * Set the roomJoinPolicy property: The Policy based on which Participants can join a room.
     *
     * @param roomJoinPolicy the roomJoinPolicy value to set.
     * @return the RoomModel object itself.
     */
    public RoomModel setRoomJoinPolicy(RoomJoinPolicy roomJoinPolicy) {
        this.roomJoinPolicy = roomJoinPolicy;
        return this;
    }

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

    /**
     * Set the participants property: Collection of room participants.
     *
     * @param participants the participants value to set.
     * @return the RoomModel object itself.
     */
    public RoomModel setParticipants(List participants) {
        this.participants = participants;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy