#[non_exhaustive]pub struct CardHolderVerificationValueBuilder { /* private fields */ }
Expand description
A builder for CardHolderVerificationValue
.
Implementations§
source§impl CardHolderVerificationValueBuilder
impl CardHolderVerificationValueBuilder
sourcepub fn unpredictable_number(self, input: impl Into<String>) -> Self
pub fn unpredictable_number(self, input: impl Into<String>) -> Self
A random number generated by the issuer.
sourcepub fn set_unpredictable_number(self, input: Option<String>) -> Self
pub fn set_unpredictable_number(self, input: Option<String>) -> Self
A random number generated by the issuer.
sourcepub fn get_unpredictable_number(&self) -> &Option<String>
pub fn get_unpredictable_number(&self) -> &Option<String>
A random number generated by the issuer.
sourcepub fn pan_sequence_number(self, input: impl Into<String>) -> Self
pub fn pan_sequence_number(self, input: impl Into<String>) -> Self
A number that identifies and differentiates payment cards with the same Primary Account Number (PAN).
sourcepub fn set_pan_sequence_number(self, input: Option<String>) -> Self
pub fn set_pan_sequence_number(self, input: Option<String>) -> Self
A number that identifies and differentiates payment cards with the same Primary Account Number (PAN).
sourcepub fn get_pan_sequence_number(&self) -> &Option<String>
pub fn get_pan_sequence_number(&self) -> &Option<String>
A number that identifies and differentiates payment cards with the same Primary Account Number (PAN).
sourcepub fn application_transaction_counter(self, input: impl Into<String>) -> Self
pub fn application_transaction_counter(self, input: impl Into<String>) -> Self
The transaction counter value that comes from a point of sale terminal.
sourcepub fn set_application_transaction_counter(self, input: Option<String>) -> Self
pub fn set_application_transaction_counter(self, input: Option<String>) -> Self
The transaction counter value that comes from a point of sale terminal.
sourcepub fn get_application_transaction_counter(&self) -> &Option<String>
pub fn get_application_transaction_counter(&self) -> &Option<String>
The transaction counter value that comes from a point of sale terminal.
sourcepub fn build(self) -> CardHolderVerificationValue
pub fn build(self) -> CardHolderVerificationValue
Consumes the builder and constructs a CardHolderVerificationValue
.
Trait Implementations§
source§impl Clone for CardHolderVerificationValueBuilder
impl Clone for CardHolderVerificationValueBuilder
source§fn clone(&self) -> CardHolderVerificationValueBuilder
fn clone(&self) -> CardHolderVerificationValueBuilder
Returns a copy 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 Default for CardHolderVerificationValueBuilder
impl Default for CardHolderVerificationValueBuilder
source§fn default() -> CardHolderVerificationValueBuilder
fn default() -> CardHolderVerificationValueBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<CardHolderVerificationValueBuilder> for CardHolderVerificationValueBuilder
impl PartialEq<CardHolderVerificationValueBuilder> for CardHolderVerificationValueBuilder
source§fn eq(&self, other: &CardHolderVerificationValueBuilder) -> bool
fn eq(&self, other: &CardHolderVerificationValueBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CardHolderVerificationValueBuilder
Auto Trait Implementations§
impl RefUnwindSafe for CardHolderVerificationValueBuilder
impl Send for CardHolderVerificationValueBuilder
impl Sync for CardHolderVerificationValueBuilder
impl Unpin for CardHolderVerificationValueBuilder
impl UnwindSafe for CardHolderVerificationValueBuilder
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