zernio 0.0.76

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 GetLinkedInMentions200Response {
    /// The LinkedIn URN (person or organization)
    #[serde(rename = "urn", skip_serializing_if = "Option::is_none")]
    pub urn: Option<String>,
    /// The type of entity (person or organization)
    #[serde(rename = "type", skip_serializing_if = "Option::is_none")]
    pub r#type: Option<Type>,
    /// Display name (provided, from API, or derived from vanity URL)
    #[serde(rename = "displayName", skip_serializing_if = "Option::is_none")]
    pub display_name: Option<String>,
    /// Ready-to-use mention format for post content
    #[serde(rename = "mentionFormat", skip_serializing_if = "Option::is_none")]
    pub mention_format: Option<String>,
    /// The vanity name/slug (only for organization mentions)
    #[serde(rename = "vanityName", skip_serializing_if = "Option::is_none")]
    pub vanity_name: Option<String>,
    /// Warning about clickable mentions (only present for person mentions if displayName was not provided)
    #[serde(rename = "warning", skip_serializing_if = "Option::is_none")]
    pub warning: Option<String>,
}

impl GetLinkedInMentions200Response {
    pub fn new() -> GetLinkedInMentions200Response {
        GetLinkedInMentions200Response {
            urn: None,
            r#type: None,
            display_name: None,
            mention_format: None,
            vanity_name: None,
            warning: None,
        }
    }
}
/// The type of entity (person or organization)
#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
pub enum Type {
    #[serde(rename = "person")]
    Person,
    #[serde(rename = "organization")]
    Organization,
}

impl Default for Type {
    fn default() -> Type {
        Self::Person
    }
}