use serde::de::{Error, MapAccess, Visitor};
use serde::{Deserialize, Deserializer, Serialize};
use serde_with::skip_serializing_none;
use std::fmt::{self, Formatter};
#[non_exhaustive]
#[skip_serializing_none]
#[derive(Clone, Debug, PartialEq, Serialize)]
pub struct AllocationExposureRolloutStep {
#[serde(rename = "allocation_exposure_schedule_id")]
pub allocation_exposure_schedule_id: uuid::Uuid,
#[serde(rename = "created_at")]
pub created_at: chrono::DateTime<chrono::Utc>,
#[serde(rename = "exposure_ratio")]
pub exposure_ratio: f64,
#[serde(rename = "grouped_step_index")]
pub grouped_step_index: i64,
#[serde(rename = "id")]
pub id: uuid::Uuid,
#[serde(
rename = "interval_ms",
default,
with = "::serde_with::rust::double_option"
)]
pub interval_ms: Option<Option<i64>>,
#[serde(rename = "is_pause_record")]
pub is_pause_record: bool,
#[serde(rename = "order_position")]
pub order_position: i64,
#[serde(rename = "updated_at")]
pub updated_at: chrono::DateTime<chrono::Utc>,
#[serde(flatten)]
pub additional_properties: std::collections::BTreeMap<String, serde_json::Value>,
#[serde(skip)]
#[serde(default)]
pub(crate) _unparsed: bool,
}
impl AllocationExposureRolloutStep {
pub fn new(
allocation_exposure_schedule_id: uuid::Uuid,
created_at: chrono::DateTime<chrono::Utc>,
exposure_ratio: f64,
grouped_step_index: i64,
id: uuid::Uuid,
is_pause_record: bool,
order_position: i64,
updated_at: chrono::DateTime<chrono::Utc>,
) -> AllocationExposureRolloutStep {
AllocationExposureRolloutStep {
allocation_exposure_schedule_id,
created_at,
exposure_ratio,
grouped_step_index,
id,
interval_ms: None,
is_pause_record,
order_position,
updated_at,
additional_properties: std::collections::BTreeMap::new(),
_unparsed: false,
}
}
pub fn interval_ms(mut self, value: Option<i64>) -> Self {
self.interval_ms = Some(value);
self
}
pub fn additional_properties(
mut self,
value: std::collections::BTreeMap<String, serde_json::Value>,
) -> Self {
self.additional_properties = value;
self
}
}
impl<'de> Deserialize<'de> for AllocationExposureRolloutStep {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: Deserializer<'de>,
{
struct AllocationExposureRolloutStepVisitor;
impl<'a> Visitor<'a> for AllocationExposureRolloutStepVisitor {
type Value = AllocationExposureRolloutStep;
fn expecting(&self, f: &mut Formatter<'_>) -> fmt::Result {
f.write_str("a mapping")
}
fn visit_map<M>(self, mut map: M) -> Result<Self::Value, M::Error>
where
M: MapAccess<'a>,
{
let mut allocation_exposure_schedule_id: Option<uuid::Uuid> = None;
let mut created_at: Option<chrono::DateTime<chrono::Utc>> = None;
let mut exposure_ratio: Option<f64> = None;
let mut grouped_step_index: Option<i64> = None;
let mut id: Option<uuid::Uuid> = None;
let mut interval_ms: Option<Option<i64>> = None;
let mut is_pause_record: Option<bool> = None;
let mut order_position: Option<i64> = None;
let mut updated_at: Option<chrono::DateTime<chrono::Utc>> = None;
let mut additional_properties: std::collections::BTreeMap<
String,
serde_json::Value,
> = std::collections::BTreeMap::new();
let mut _unparsed = false;
while let Some((k, v)) = map.next_entry::<String, serde_json::Value>()? {
match k.as_str() {
"allocation_exposure_schedule_id" => {
allocation_exposure_schedule_id =
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"created_at" => {
created_at = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"exposure_ratio" => {
exposure_ratio =
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"grouped_step_index" => {
grouped_step_index =
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"id" => {
id = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"interval_ms" => {
interval_ms =
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"is_pause_record" => {
is_pause_record =
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"order_position" => {
order_position =
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"updated_at" => {
updated_at = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
&_ => {
if let Ok(value) = serde_json::from_value(v.clone()) {
additional_properties.insert(k, value);
}
}
}
}
let allocation_exposure_schedule_id = allocation_exposure_schedule_id
.ok_or_else(|| M::Error::missing_field("allocation_exposure_schedule_id"))?;
let created_at = created_at.ok_or_else(|| M::Error::missing_field("created_at"))?;
let exposure_ratio =
exposure_ratio.ok_or_else(|| M::Error::missing_field("exposure_ratio"))?;
let grouped_step_index = grouped_step_index
.ok_or_else(|| M::Error::missing_field("grouped_step_index"))?;
let id = id.ok_or_else(|| M::Error::missing_field("id"))?;
let is_pause_record =
is_pause_record.ok_or_else(|| M::Error::missing_field("is_pause_record"))?;
let order_position =
order_position.ok_or_else(|| M::Error::missing_field("order_position"))?;
let updated_at = updated_at.ok_or_else(|| M::Error::missing_field("updated_at"))?;
let content = AllocationExposureRolloutStep {
allocation_exposure_schedule_id,
created_at,
exposure_ratio,
grouped_step_index,
id,
interval_ms,
is_pause_record,
order_position,
updated_at,
additional_properties,
_unparsed,
};
Ok(content)
}
}
deserializer.deserialize_any(AllocationExposureRolloutStepVisitor)
}
}