Skip to main content

FinancialEvents

Struct FinancialEvents 

Source
pub struct FinancialEvents {
Show 33 fields pub shipment_event_list: Option<Vec<ShipmentEvent>>, pub shipment_settle_event_list: Option<Vec<ShipmentEvent>>, pub refund_event_list: Option<Vec<ShipmentEvent>>, pub guarantee_claim_event_list: Option<Vec<ShipmentEvent>>, pub chargeback_event_list: Option<Vec<ShipmentEvent>>, pub pay_with_amazon_event_list: Option<Vec<PayWithAmazonEvent>>, pub service_provider_credit_event_list: Option<Vec<SolutionProviderCreditEvent>>, pub retrocharge_event_list: Option<Vec<RetrochargeEvent>>, pub rental_transaction_event_list: Option<Vec<RentalTransactionEvent>>, pub product_ads_payment_event_list: Option<Vec<ProductAdsPaymentEvent>>, pub service_fee_event_list: Option<Vec<ServiceFeeEvent>>, pub seller_deal_payment_event_list: Option<Vec<SellerDealPaymentEvent>>, pub debt_recovery_event_list: Option<Vec<DebtRecoveryEvent>>, pub loan_servicing_event_list: Option<Vec<LoanServicingEvent>>, pub adjustment_event_list: Option<Vec<AdjustmentEvent>>, pub safet_reimbursement_event_list: Option<Vec<SafetReimbursementEvent>>, pub seller_review_enrollment_payment_event_list: Option<Vec<SellerReviewEnrollmentPaymentEvent>>, pub fba_liquidation_event_list: Option<Vec<FbaLiquidationEvent>>, pub coupon_payment_event_list: Option<Vec<CouponPaymentEvent>>, pub imaging_services_fee_event_list: Option<Vec<ImagingServicesFeeEvent>>, pub network_commingling_transaction_event_list: Option<Vec<NetworkComminglingTransactionEvent>>, pub affordability_expense_event_list: Option<Vec<AffordabilityExpenseEvent>>, pub affordability_expense_reversal_event_list: Option<Vec<AffordabilityExpenseEvent>>, pub removal_shipment_event_list: Option<Vec<RemovalShipmentEvent>>, pub removal_shipment_adjustment_event_list: Option<Vec<RemovalShipmentAdjustmentEvent>>, pub trial_shipment_event_list: Option<Vec<TrialShipmentEvent>>, pub tds_reimbursement_event_list: Option<Vec<TdsReimbursementEvent>>, pub adhoc_disbursement_event_list: Option<Vec<AdhocDisbursementEvent>>, pub tax_withholding_event_list: Option<Vec<TaxWithholdingEvent>>, pub charge_refund_event_list: Option<Vec<ChargeRefundEvent>>, pub failed_adhoc_disbursement_event_list: Option<Vec<FailedAdhocDisbursementEvent>>, pub value_added_service_charge_event_list: Option<Vec<ValueAddedServiceChargeEvent>>, pub capacity_reservation_billing_event_list: Option<Vec<CapacityReservationBillingEvent>>,
}
Expand description

FinancialEvents : Contains all information related to a financial event.

Fields§

§shipment_event_list: Option<Vec<ShipmentEvent>>

A list of shipment event information.

§shipment_settle_event_list: Option<Vec<ShipmentEvent>>

A list of ShipmentEvent items.

§refund_event_list: Option<Vec<ShipmentEvent>>

A list of shipment event information.

§guarantee_claim_event_list: Option<Vec<ShipmentEvent>>

A list of shipment event information.

§chargeback_event_list: Option<Vec<ShipmentEvent>>

A list of shipment event information.

§pay_with_amazon_event_list: Option<Vec<PayWithAmazonEvent>>

A list of events related to the seller’s Pay with Amazon account.

§service_provider_credit_event_list: Option<Vec<SolutionProviderCreditEvent>>

A list of information about solution provider credits.

§retrocharge_event_list: Option<Vec<RetrochargeEvent>>

A list of information about Retrocharge or RetrochargeReversal events.

§rental_transaction_event_list: Option<Vec<RentalTransactionEvent>>

A list of rental transaction event information.

§product_ads_payment_event_list: Option<Vec<ProductAdsPaymentEvent>>

A list of sponsored products payment events.

§service_fee_event_list: Option<Vec<ServiceFeeEvent>>

A list of information about service fee events.

§seller_deal_payment_event_list: Option<Vec<SellerDealPaymentEvent>>

A list of payment events for deal-related fees.

§debt_recovery_event_list: Option<Vec<DebtRecoveryEvent>>

A list of debt recovery event information.

§loan_servicing_event_list: Option<Vec<LoanServicingEvent>>

A list of loan servicing events.

§adjustment_event_list: Option<Vec<AdjustmentEvent>>

A list of adjustment event information for the seller’s account.

§safet_reimbursement_event_list: Option<Vec<SafetReimbursementEvent>>

A list of SAFETReimbursementEvents.

§seller_review_enrollment_payment_event_list: Option<Vec<SellerReviewEnrollmentPaymentEvent>>

A list of information about fee events for the Early Reviewer Program.

§fba_liquidation_event_list: Option<Vec<FbaLiquidationEvent>>

A list of FBA inventory liquidation payment events.

§coupon_payment_event_list: Option<Vec<CouponPaymentEvent>>

A list of coupon payment event information.

§imaging_services_fee_event_list: Option<Vec<ImagingServicesFeeEvent>>

A list of fee events related to Amazon Imaging services.

§network_commingling_transaction_event_list: Option<Vec<NetworkComminglingTransactionEvent>>

A list of network commingling transaction events.

§affordability_expense_event_list: Option<Vec<AffordabilityExpenseEvent>>

A list of expense information related to an affordability promotion.

§affordability_expense_reversal_event_list: Option<Vec<AffordabilityExpenseEvent>>

A list of expense information related to an affordability promotion.

§removal_shipment_event_list: Option<Vec<RemovalShipmentEvent>>

A list of removal shipment event information.

§removal_shipment_adjustment_event_list: Option<Vec<RemovalShipmentAdjustmentEvent>>

A comma-delimited list of Removal shipmentAdjustment details for FBA inventory.

§trial_shipment_event_list: Option<Vec<TrialShipmentEvent>>

A list of information about trial shipment financial events.

§tds_reimbursement_event_list: Option<Vec<TdsReimbursementEvent>>

A list of TDSReimbursementEvent items.

§adhoc_disbursement_event_list: Option<Vec<AdhocDisbursementEvent>>

A list of AdhocDisbursement events.

§tax_withholding_event_list: Option<Vec<TaxWithholdingEvent>>

A list of TaxWithholding events.

§charge_refund_event_list: Option<Vec<ChargeRefundEvent>>

A list of charge refund events.

§failed_adhoc_disbursement_event_list: Option<Vec<FailedAdhocDisbursementEvent>>

A list of FailedAdhocDisbursementEvents.

§value_added_service_charge_event_list: Option<Vec<ValueAddedServiceChargeEvent>>

A list of ValueAddedServiceCharge events.

§capacity_reservation_billing_event_list: Option<Vec<CapacityReservationBillingEvent>>

A list of CapacityReservationBillingEvent events.

Implementations§

Source§

impl FinancialEvents

Source

pub fn new() -> FinancialEvents

Contains all information related to a financial event.

Trait Implementations§

Source§

impl Clone for FinancialEvents

Source§

fn clone(&self) -> FinancialEvents

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for FinancialEvents

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for FinancialEvents

Source§

fn default() -> FinancialEvents

Returns the “default value” for a type. Read more
Source§

impl<'de> Deserialize<'de> for FinancialEvents

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl PartialEq for FinancialEvents

Source§

fn eq(&self, other: &FinancialEvents) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Serialize for FinancialEvents

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl StructuralPartialEq for FinancialEvents

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> ErasedDestructor for T
where T: 'static,