pub struct TransactionIncludesResponseMerchant {
pub guid: Option<String>,
pub logo_url: Option<String>,
pub name: Option<String>,
pub website_url: Option<String>,
}Expand description
TransactionIncludesResponseMerchant
JSON schema
{
"type": "object",
"properties": {
"guid": {
"examples": [
"MCH-0c25f895-393c-42a4-9c18-95a0b26d4d84"
],
"type": "string"
},
"logo_url": {
"examples": [
"https://content.mx.com/logos/merchants/MCH-0c25f895-393c-42a4-9c18-95a0b26d4d84.png"
],
"type": "string"
},
"name": {
"examples": [
"MX"
],
"type": "string"
},
"website_url": {
"examples": [
"https://www.mx.com"
],
"type": "string"
}
}
}Fields§
§guid: Option<String>§logo_url: Option<String>§name: Option<String>§website_url: Option<String>Trait Implementations§
Source§impl Clone for TransactionIncludesResponseMerchant
impl Clone for TransactionIncludesResponseMerchant
Source§fn clone(&self) -> TransactionIncludesResponseMerchant
fn clone(&self) -> TransactionIncludesResponseMerchant
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<'de> Deserialize<'de> for TransactionIncludesResponseMerchant
impl<'de> Deserialize<'de> for TransactionIncludesResponseMerchant
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
Source§impl From<&TransactionIncludesResponseMerchant> for TransactionIncludesResponseMerchant
impl From<&TransactionIncludesResponseMerchant> for TransactionIncludesResponseMerchant
Source§fn from(value: &TransactionIncludesResponseMerchant) -> Self
fn from(value: &TransactionIncludesResponseMerchant) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for TransactionIncludesResponseMerchant
impl RefUnwindSafe for TransactionIncludesResponseMerchant
impl Send for TransactionIncludesResponseMerchant
impl Sync for TransactionIncludesResponseMerchant
impl Unpin for TransactionIncludesResponseMerchant
impl UnwindSafe for TransactionIncludesResponseMerchant
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