pub struct RefundDestinationDetailsBlik {
pub network_decline_code: Option<String>,
pub reference: Option<String>,
pub reference_status: Option<String>,
}
Fields§
§network_decline_code: Option<String>
For refunds declined by the network, a decline code provided by the network which indicates the reason the refund failed.
reference: Option<String>
The reference assigned to the refund.
reference_status: Option<String>
Status of the reference on the refund. This can be pending
, available
or unavailable
.
Trait Implementations§
Source§impl Clone for RefundDestinationDetailsBlik
impl Clone for RefundDestinationDetailsBlik
Source§fn clone(&self) -> RefundDestinationDetailsBlik
fn clone(&self) -> RefundDestinationDetailsBlik
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for RefundDestinationDetailsBlik
impl Debug for RefundDestinationDetailsBlik
Source§impl FromValueOpt for RefundDestinationDetailsBlik
impl FromValueOpt for RefundDestinationDetailsBlik
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for RefundDestinationDetailsBlik
impl RefUnwindSafe for RefundDestinationDetailsBlik
impl Send for RefundDestinationDetailsBlik
impl Sync for RefundDestinationDetailsBlik
impl Unpin for RefundDestinationDetailsBlik
impl UnwindSafe for RefundDestinationDetailsBlik
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more