pub struct RoomsDevices {
pub client: Client,
}Fields§
§client: ClientImplementations§
Source§impl RoomsDevices
impl RoomsDevices
Sourcepub async fn change_zoom_rooms_app_version(
&self,
room_id: &str,
device_id: &str,
body: &ChangeZoomRoomsAppVersionRequest,
) -> Result<Response<()>, ClientError>
pub async fn change_zoom_rooms_app_version( &self, room_id: &str, device_id: &str, body: &ChangeZoomRoomsAppVersionRequest, ) -> Result<Response<()>, ClientError>
Change Zoom Rooms’ app version.
This function performs a PUT to the /rooms/{roomId}/devices/{deviceId}/app_version endpoint.
Upgrade or downgrade the version of Zoom Rooms App installed in your Mac or Windows device.
Prerequisites:
- Pro or a higher account with Zoom Rooms.
- Zoom Rooms software must be installed either on a Mac or a Windows device. This API does not support other devices.
Parameters:
room_id: &str– Unique Identifier of the Zoom Room.device_id: &str– Unique Identifier of the Mac or the Windows device. The value of this field can be retrieved from the List Zoom Room Devices API.
Auto Trait Implementations§
impl Freeze for RoomsDevices
impl !RefUnwindSafe for RoomsDevices
impl Send for RoomsDevices
impl Sync for RoomsDevices
impl Unpin for RoomsDevices
impl !UnwindSafe for RoomsDevices
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more