use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
pub enum DeliveryType {
#[serde(rename = "push")]
Push,
#[serde(rename = "pull")]
Pull,
}
impl std::fmt::Display for DeliveryType {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
match self {
Self::Push => write!(f, "push"),
Self::Pull => write!(f, "pull"),
}
}
}
impl Default for DeliveryType {
fn default() -> DeliveryType {
Self::Push
}
}