zernio 0.0.432

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 CreatePhoneNumberPortIn201Response {
    /// Porting order ID.
    #[serde(rename = "id", skip_serializing_if = "Option::is_none")]
    pub id: Option<String>,
    #[serde(
        rename = "telnyxPortingOrderId",
        skip_serializing_if = "Option::is_none"
    )]
    pub telnyx_porting_order_id: Option<String>,
    #[serde(rename = "status", skip_serializing_if = "Option::is_none")]
    pub status: Option<Status>,
    #[serde(rename = "phoneNumbers", skip_serializing_if = "Option::is_none")]
    pub phone_numbers: Option<Vec<String>>,
    #[serde(rename = "orders", skip_serializing_if = "Option::is_none")]
    pub orders: Option<Vec<models::CreatePhoneNumberPortIn201ResponseOrdersInner>>,
}

impl CreatePhoneNumberPortIn201Response {
    pub fn new() -> CreatePhoneNumberPortIn201Response {
        CreatePhoneNumberPortIn201Response {
            id: None,
            telnyx_porting_order_id: None,
            status: None,
            phone_numbers: None,
            orders: None,
        }
    }
}
///
#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
pub enum Status {
    #[serde(rename = "draft")]
    Draft,
    #[serde(rename = "pending")]
    Pending,
    #[serde(rename = "foc_confirmed")]
    FocConfirmed,
    #[serde(rename = "ported")]
    Ported,
    #[serde(rename = "exception")]
    Exception,
    #[serde(rename = "cancelled")]
    Cancelled,
}

impl Default for Status {
    fn default() -> Status {
        Self::Draft
    }
}