1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*
* Zernio API
*
* API reference for Zernio. Authenticate with a Bearer API key. Base URL: https://zernio.com/api
*
* The version of the OpenAPI document: 1.0.4
* Contact: support@zernio.com
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct SendDiscordDirectMessageRequest {
/// SocialAccount _id of the connected Discord account the bot speaks as. Caller must own the account (directly or via team membership).
#[serde(rename = "accountId")]
pub account_id: String,
/// Discord snowflake ID of the recipient (15-21 digits).
#[serde(rename = "userId")]
pub user_id: String,
/// Message text, up to 2,000 characters.
#[serde(rename = "content", skip_serializing_if = "Option::is_none")]
pub content: Option<String>,
/// Up to 10 Discord embeds. Same shape as channel-post embeds (title, description, color, fields, etc.). See DiscordPlatformData.embeds for the embed object schema.
#[serde(rename = "embeds", skip_serializing_if = "Option::is_none")]
pub embeds: Option<Vec<serde_json::Value>>,
/// Up to 10 media attachments. Each is `{ type: image|video|gif|document, url, filename?, mimeType?, size? }`.
#[serde(rename = "attachments", skip_serializing_if = "Option::is_none")]
pub attachments: Option<Vec<models::SendDiscordDirectMessageRequestAttachmentsInner>>,
/// Send as text-to-speech message.
#[serde(rename = "tts", skip_serializing_if = "Option::is_none")]
pub tts: Option<bool>,
}
impl SendDiscordDirectMessageRequest {
pub fn new(account_id: String, user_id: String) -> SendDiscordDirectMessageRequest {
SendDiscordDirectMessageRequest {
account_id,
user_id,
content: None,
embeds: None,
attachments: None,
tts: None,
}
}
}