late 0.0.375

API reference for Zernio. Authenticate with a Bearer API key. Base URL: https://zernio.com/api
Documentation
/*
 * 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,
        }
    }
}