zernio 0.0.132

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.1
 * 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 EditPostRequest {
    /// The platform to edit the post on. Currently only twitter is supported.
    #[serde(rename = "platform")]
    pub platform: Platform,
    /// The new tweet text content
    #[serde(rename = "content")]
    pub content: String,
}

impl EditPostRequest {
    pub fn new(platform: Platform, content: String) -> EditPostRequest {
        EditPostRequest { platform, content }
    }
}
/// The platform to edit the post on. Currently only twitter is supported.
#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
pub enum Platform {
    #[serde(rename = "twitter")]
    Twitter,
}

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