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 · 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>
Auto Trait Implementations§
impl Freeze for IssuingAuthorizationNetworkData
impl RefUnwindSafe for IssuingAuthorizationNetworkData
impl Send for IssuingAuthorizationNetworkData
impl Sync for IssuingAuthorizationNetworkData
impl Unpin 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