late 0.0.297

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 StartGoogleBusinessVerificationRequest {
    /// The verification method. Selects which method-specific field below is required.
    #[serde(rename = "method")]
    pub method: Method,
    #[serde(rename = "languageCode", skip_serializing_if = "Option::is_none")]
    pub language_code: Option<String>,
    /// For PHONE_CALL / SMS.
    #[serde(rename = "phoneNumber", skip_serializing_if = "Option::is_none")]
    pub phone_number: Option<String>,
    /// For EMAIL.
    #[serde(rename = "emailAddress", skip_serializing_if = "Option::is_none")]
    pub email_address: Option<String>,
    /// For ADDRESS (postcard) verification.
    #[serde(rename = "mailerContact", skip_serializing_if = "Option::is_none")]
    pub mailer_contact: Option<serde_json::Value>,
    /// ServiceBusinessContext (e.g. service address). Required for service-area businesses.
    #[serde(rename = "context", skip_serializing_if = "Option::is_none")]
    pub context: Option<serde_json::Value>,
}

impl StartGoogleBusinessVerificationRequest {
    pub fn new(method: Method) -> StartGoogleBusinessVerificationRequest {
        StartGoogleBusinessVerificationRequest {
            method,
            language_code: None,
            phone_number: None,
            email_address: None,
            mailer_contact: None,
            context: None,
        }
    }
}
/// The verification method. Selects which method-specific field below is required.
#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
pub enum Method {
    #[serde(rename = "ADDRESS")]
    Address,
    #[serde(rename = "EMAIL")]
    Email,
    #[serde(rename = "PHONE_CALL")]
    PhoneCall,
    #[serde(rename = "SMS")]
    Sms,
    #[serde(rename = "AUTO")]
    Auto,
    #[serde(rename = "VETTED_PARTNER")]
    VettedPartner,
}

impl Default for Method {
    fn default() -> Method {
        Self::Address
    }
}