1
0
mirror of https://gitlab.com/comunic/comunicapiv3 synced 2025-02-22 16:51:17 +00:00
comunicapiv3/src/api_data/new_call_signal.rs

27 lines
571 B
Rust
Raw Normal View History

2021-02-11 19:07:30 +01:00
//! # New call signal
//!
//! @author Pierre Hubert
use serde::Serialize;
use crate::data::conversation::ConvID;
use crate::data::error::Res;
use crate::data::user::UserID;
#[derive(Serialize)]
#[allow(non_snake_case)]
pub struct NewCallSignalAPI {
callID: u64,
peerID: u64,
data: serde_json::Value,
}
impl NewCallSignalAPI {
pub fn new(call_id: &ConvID, peer_id: &UserID, data: &str) -> Res<Self> {
Ok(Self {
2021-03-04 18:51:52 +01:00
callID: call_id.id(),
2021-02-11 19:07:30 +01:00
peerID: peer_id.id(),
data: serde_json::from_str(data)?,
})
}
}