[][src]Struct zoom_api::Building

pub struct Building {
    pub id: Option<String>,
    pub name: String,
    pub description: Option<String>,
    pub parent_location_id: Option<String>,
    pub typev: Option<String>,
    pub address: Option<String>,
    pub support_email: Option<String>,
    pub support_phone: Option<String>,
    pub room_passcode: Option<String>,
    pub required_code_to_ext: Option<bool>,
}

A building.

From: https://marketplace.zoom.us/docs/api-reference/zoom-api/rooms-location/getzrlocationprofile

Fields

id: Option<String>

Unique Identifier of the location.

name: String

Name of the location.

description: Option<String>

Description about the location.

parent_location_id: Option<String>

ID (Unique Identifier) of the parent location. For instance, if a Zoom Room is located in Floor 1 of Building A, the location of Building A will be the parent location of Floor 1 and the parent_location_id of Floor 1 will be the ID of Building A. The value of parent_location_id of the top-level location (country) is the Account ID of the Zoom account.

typev: Option<String>

Type of location.

address: Option<String>

Address of the location.

support_email: Option<String>

The email address to be used for reporting Zoom Room issues.

support_phone: Option<String>

The phone number to be used for reporting Zoom Room issues.

room_passcode: Option<String>

1-16 digit number or characters that is used to secure your Zoom Rooms application. This code must be entered on your Zoom Room Controller to change settings or sign out.

required_code_to_ext: Option<bool>

Require code to exit out of Zoom Rooms application to switch between other apps.

Implementations

impl Building[src]

pub fn update(self, building: BuildingConfig, passcode: String) -> Building[src]

Update a building from a configuration.

Trait Implementations

impl Clone for Building[src]

impl Debug for Building[src]

impl Default for Building[src]

impl<'de> Deserialize<'de> for Building[src]

impl Serialize for Building[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.