Struct aws_sdk_paymentcryptographydata::types::builders::CryptogramVerificationArpcMethod2Builder
source · #[non_exhaustive]pub struct CryptogramVerificationArpcMethod2Builder { /* private fields */ }
Expand description
A builder for CryptogramVerificationArpcMethod2
.
Implementations§
source§impl CryptogramVerificationArpcMethod2Builder
impl CryptogramVerificationArpcMethod2Builder
sourcepub fn card_status_update(self, input: impl Into<String>) -> Self
pub fn card_status_update(self, input: impl Into<String>) -> Self
The data indicating whether the issuer approves or declines an online transaction using an EMV chip card.
This field is required.sourcepub fn set_card_status_update(self, input: Option<String>) -> Self
pub fn set_card_status_update(self, input: Option<String>) -> Self
The data indicating whether the issuer approves or declines an online transaction using an EMV chip card.
sourcepub fn get_card_status_update(&self) -> &Option<String>
pub fn get_card_status_update(&self) -> &Option<String>
The data indicating whether the issuer approves or declines an online transaction using an EMV chip card.
sourcepub fn proprietary_authentication_data(self, input: impl Into<String>) -> Self
pub fn proprietary_authentication_data(self, input: impl Into<String>) -> Self
The proprietary authentication data used by issuer for communication during online transaction using an EMV chip card.
sourcepub fn set_proprietary_authentication_data(self, input: Option<String>) -> Self
pub fn set_proprietary_authentication_data(self, input: Option<String>) -> Self
The proprietary authentication data used by issuer for communication during online transaction using an EMV chip card.
sourcepub fn get_proprietary_authentication_data(&self) -> &Option<String>
pub fn get_proprietary_authentication_data(&self) -> &Option<String>
The proprietary authentication data used by issuer for communication during online transaction using an EMV chip card.
sourcepub fn build(self) -> Result<CryptogramVerificationArpcMethod2, BuildError>
pub fn build(self) -> Result<CryptogramVerificationArpcMethod2, BuildError>
Consumes the builder and constructs a CryptogramVerificationArpcMethod2
.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for CryptogramVerificationArpcMethod2Builder
impl Clone for CryptogramVerificationArpcMethod2Builder
source§fn clone(&self) -> CryptogramVerificationArpcMethod2Builder
fn clone(&self) -> CryptogramVerificationArpcMethod2Builder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for CryptogramVerificationArpcMethod2Builder
impl Default for CryptogramVerificationArpcMethod2Builder
source§fn default() -> CryptogramVerificationArpcMethod2Builder
fn default() -> CryptogramVerificationArpcMethod2Builder
source§impl PartialEq for CryptogramVerificationArpcMethod2Builder
impl PartialEq for CryptogramVerificationArpcMethod2Builder
source§fn eq(&self, other: &CryptogramVerificationArpcMethod2Builder) -> bool
fn eq(&self, other: &CryptogramVerificationArpcMethod2Builder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CryptogramVerificationArpcMethod2Builder
Auto Trait Implementations§
impl Freeze for CryptogramVerificationArpcMethod2Builder
impl RefUnwindSafe for CryptogramVerificationArpcMethod2Builder
impl Send for CryptogramVerificationArpcMethod2Builder
impl Sync for CryptogramVerificationArpcMethod2Builder
impl Unpin for CryptogramVerificationArpcMethod2Builder
impl UnwindSafe for CryptogramVerificationArpcMethod2Builder
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more