ruma-client-api 0.11.0

Types for the endpoints in the Matrix client-server API.
Documentation
//! [POST /_matrix/client/r0/delete_devices](https://matrix.org/docs/spec/client_server/r0.6.0#post-matrix-client-r0-delete-devices)

use ruma_api::ruma_api;
use ruma_identifiers::DeviceIdBox;

use crate::r0::uiaa::{AuthData, IncomingAuthData, UiaaResponse};

ruma_api! {
    metadata: {
        description: "Delete specified devices.",
        method: POST,
        path: "/_matrix/client/r0/delete_devices",
        name: "delete_devices",
        rate_limited: false,
        authentication: AccessToken,
    }

    request: {
        /// List of devices to delete.
        pub devices: &'a [DeviceIdBox],

        /// Additional authentication information for the user-interactive authentication API.
        #[serde(skip_serializing_if = "Option::is_none")]
        pub auth: Option<AuthData<'a>>,
    }

    #[derive(Default)]
    response: {}

    error: UiaaResponse
}

impl<'a> Request<'a> {
    /// Creates a new `Request` with the given device list.
    pub fn new(devices: &'a [DeviceIdBox]) -> Self {
        Self { devices, auth: None }
    }
}

impl Response {
    /// Creates an empty `Response`.
    pub fn new() -> Self {
        Self
    }
}