paypal_rust/resources/refund.rs
1use crate::resources::refund_status_details::RefundStatusDetails;
2use serde::{Deserialize, Serialize};
3
4#[derive(Clone, Debug, Default, Deserialize, Serialize)]
5pub struct Refund {
6 /// The status of the refund.
7 pub status: Option<String>,
8
9 /// The details of the refund status.
10 pub status_details: Option<RefundStatusDetails>,
11}