1
2
3
4
5
6
7
8
9
10
11
use crate::push_service::AttachmentV2UploadAttributes;

use super::*;

impl SignalWebSocket {
    pub async fn get_attachment_v2_upload_attributes(
        &mut self,
    ) -> Result<AttachmentV2UploadAttributes, ServiceError> {
        self.get_json("/v2/attachments/form/upload").await
    }
}