amazon-spapi 2.0.3

A Rust client library for Amazon Selling Partner API (SP-API)
Documentation
/*
 * Selling Partner API for Retail Procurement Payments
 *
 * The Selling Partner API for Retail Procurement Payments provides programmatic access to vendors payments data.
 *
 * The version of the OpenAPI document: v1
 * 
 * Generated by: https://openapi-generator.tech
 */

use crate::models;
use serde::{Deserialize, Serialize};

/// ChargeDetails : Monetary and tax details of the charge.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct ChargeDetails {
    /// Type of the charge applied.
    #[serde(rename = "type")]
    pub r#type: Type,
    /// Description of the charge.
    #[serde(rename = "description", skip_serializing_if = "Option::is_none")]
    pub description: Option<String>,
    #[serde(rename = "chargeAmount")]
    pub charge_amount: Box<models::vendor_invoices::Money>,
    /// Tax amount details applied on this charge.
    #[serde(rename = "taxDetails", skip_serializing_if = "Option::is_none")]
    pub tax_details: Option<Vec<models::vendor_invoices::TaxDetails>>,
}

impl ChargeDetails {
    /// Monetary and tax details of the charge.
    pub fn new(r#type: Type, charge_amount: models::vendor_invoices::Money) -> ChargeDetails {
        ChargeDetails {
            r#type,
            description: None,
            charge_amount: Box::new(charge_amount),
            tax_details: None,
        }
    }
}
/// Type of the charge applied.
#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
pub enum Type {
    #[serde(rename = "Freight")]
    Freight,
    #[serde(rename = "Packing")]
    Packing,
    #[serde(rename = "Duty")]
    Duty,
    #[serde(rename = "Service")]
    Service,
    #[serde(rename = "SmallOrder")]
    SmallOrder,
    #[serde(rename = "InsurancePlacementCost")]
    InsurancePlacementCost,
    #[serde(rename = "InsuranceFee")]
    InsuranceFee,
    #[serde(rename = "SpecialHandlingService")]
    SpecialHandlingService,
    #[serde(rename = "CollectionAndRecyclingService")]
    CollectionAndRecyclingService,
    #[serde(rename = "EnvironmentalProtectionService")]
    EnvironmentalProtectionService,
    #[serde(rename = "TaxCollectedAtSource")]
    TaxCollectedAtSource,
}

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