pub struct Issuer {
pub callback_options: Option<CallbackOptions>,
pub contact_info: Option<IssuerContactInfo>,
pub homepage_url: Option<String>,
pub issuer_id: Option<i64>,
pub name: Option<String>,
pub smart_tap_merchant_data: Option<SmartTapMerchantData>,
}
Expand description
There is no detailed description.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- get issuer (response)
- insert issuer (request|response)
- patch issuer (request|response)
- update issuer (request|response)
Fields§
§callback_options: Option<CallbackOptions>
Allows the issuer to provide their callback settings.
contact_info: Option<IssuerContactInfo>
Issuer contact information.
homepage_url: Option<String>
URL for the issuer’s home page.
issuer_id: Option<i64>
The unique identifier for an issuer account. This is automatically generated when the issuer is inserted.
name: Option<String>
The account name of the issuer.
smart_tap_merchant_data: Option<SmartTapMerchantData>
Available only to Smart Tap enabled partners. Contact support for additional guidance.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Issuer
impl<'de> Deserialize<'de> for Issuer
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl RequestValue for Issuer
impl ResponseResult for Issuer
Auto Trait Implementations§
impl Freeze for Issuer
impl RefUnwindSafe for Issuer
impl Send for Issuer
impl Sync for Issuer
impl Unpin for Issuer
impl UnwindSafe for Issuer
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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>
Converts
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>
Converts
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