com.azure.communication.rooms.implementation.models.UpdateRoomRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-communication-rooms Show documentation
Show all versions of azure-communication-rooms Show documentation
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
The 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.time.OffsetDateTime;
/** Request payload for updating a room. */
@Fluent
public final class UpdateRoomRequest {
/*
* (Optional) 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;
/*
* (Optional) 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;
/*
* Set this flag to true if, at the time of the call, dial out to a PSTN number is enabled in a particular room. By
* default, this flag is set to false.
*/
@JsonProperty(value = "pstnDialOutEnabled")
private Boolean pstnDialOutEnabled;
/** Creates an instance of UpdateRoomRequest class. */
public UpdateRoomRequest() {}
/**
* Get the validFrom property: (Optional) 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: (Optional) 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 UpdateRoomRequest object itself.
*/
public UpdateRoomRequest setValidFrom(OffsetDateTime validFrom) {
this.validFrom = validFrom;
return this;
}
/**
* Get the validUntil property: (Optional) 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: (Optional) 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 UpdateRoomRequest object itself.
*/
public UpdateRoomRequest setValidUntil(OffsetDateTime validUntil) {
this.validUntil = validUntil;
return this;
}
/**
* Get the pstnDialOutEnabled property: Set this flag to true if, at the time of the call, dial out to a PSTN number
* is enabled in a particular room. By default, this flag is set to false.
*
* @return the pstnDialOutEnabled value.
*/
public Boolean isPstnDialOutEnabled() {
return this.pstnDialOutEnabled;
}
/**
* Set the pstnDialOutEnabled property: Set this flag to true if, at the time of the call, dial out to a PSTN number
* is enabled in a particular room. By default, this flag is set to false.
*
* @param pstnDialOutEnabled the pstnDialOutEnabled value to set.
* @return the UpdateRoomRequest object itself.
*/
public UpdateRoomRequest setPstnDialOutEnabled(Boolean pstnDialOutEnabled) {
this.pstnDialOutEnabled = pstnDialOutEnabled;
return this;
}
}