zernio 0.0.447

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 EditInboxCommentRequest {
    /// The social account ID
    #[serde(rename = "accountId")]
    pub account_id: String,
    /// Only Reddit supports editing a comment
    #[serde(rename = "platform")]
    pub platform: Platform,
    /// The new comment body
    #[serde(rename = "content")]
    pub content: String,
}

impl EditInboxCommentRequest {
    pub fn new(account_id: String, platform: Platform, content: String) -> EditInboxCommentRequest {
        EditInboxCommentRequest {
            account_id,
            platform,
            content,
        }
    }
}
/// Only Reddit supports editing a comment
#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
pub enum Platform {
    #[serde(rename = "reddit")]
    Reddit,
}

impl Default for Platform {
    fn default() -> Platform {
        Self::Reddit
    }
}