pub struct IssuingNetworkTokenVisa {
pub card_reference_id: String,
pub token_reference_id: String,
pub token_requestor_id: String,
pub token_risk_score: Option<String>,
}
Fields§
§card_reference_id: String
A unique reference ID from Visa to represent the card account number.
token_reference_id: String
The network-unique identifier for the token.
token_requestor_id: String
The ID of the entity requesting tokenization, specific to Visa.
token_risk_score: Option<String>
Degree of risk associated with the token between 01
and 99
, with higher number indicating higher risk.
A 00
value indicates the token was not scored by Visa.
Trait Implementations§
Source§impl Clone for IssuingNetworkTokenVisa
impl Clone for IssuingNetworkTokenVisa
Source§fn clone(&self) -> IssuingNetworkTokenVisa
fn clone(&self) -> IssuingNetworkTokenVisa
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 IssuingNetworkTokenVisa
impl Debug for IssuingNetworkTokenVisa
Source§impl FromValueOpt for IssuingNetworkTokenVisa
impl FromValueOpt for IssuingNetworkTokenVisa
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for IssuingNetworkTokenVisa
impl RefUnwindSafe for IssuingNetworkTokenVisa
impl Send for IssuingNetworkTokenVisa
impl Sync for IssuingNetworkTokenVisa
impl Unpin for IssuingNetworkTokenVisa
impl UnwindSafe for IssuingNetworkTokenVisa
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