pub struct IssuingAuthorizationNetworkData {
pub acquiring_institution_id: Option<String>,
pub system_trace_audit_number: Option<String>,
pub transaction_id: Option<String>,
}Fields§
§acquiring_institution_id: Option<String>Identifier assigned to the acquirer by the card network.
Sometimes this value is not provided by the network; in this case, the value will be null.
system_trace_audit_number: Option<String>The System Trace Audit Number (STAN) is a 6-digit identifier assigned by the acquirer.
Prefer network_data.transaction_id if present, unless you have special requirements.
transaction_id: Option<String>Unique identifier for the authorization assigned by the card network used to match subsequent messages, disputes, and transactions.
Trait Implementations§
Source§impl Clone for IssuingAuthorizationNetworkData
impl Clone for IssuingAuthorizationNetworkData
Source§fn clone(&self) -> IssuingAuthorizationNetworkData
fn clone(&self) -> IssuingAuthorizationNetworkData
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl FromValueOpt for IssuingAuthorizationNetworkData
impl FromValueOpt for IssuingAuthorizationNetworkData
fn from_value(v: Value) -> Option<Self>
Source§impl PartialEq for IssuingAuthorizationNetworkData
impl PartialEq for IssuingAuthorizationNetworkData
Source§fn eq(&self, other: &IssuingAuthorizationNetworkData) -> bool
fn eq(&self, other: &IssuingAuthorizationNetworkData) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for IssuingAuthorizationNetworkData
impl StructuralPartialEq for IssuingAuthorizationNetworkData
Auto Trait Implementations§
impl Freeze for IssuingAuthorizationNetworkData
impl RefUnwindSafe for IssuingAuthorizationNetworkData
impl Send for IssuingAuthorizationNetworkData
impl Sync for IssuingAuthorizationNetworkData
impl Unpin for IssuingAuthorizationNetworkData
impl UnsafeUnpin for IssuingAuthorizationNetworkData
impl UnwindSafe for IssuingAuthorizationNetworkData
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