pub struct MerchantResponse {
pub created_at: Option<String>,
pub guid: Option<String>,
pub logo_url: Option<String>,
pub name: Option<String>,
pub updated_at: Option<String>,
pub website_url: Option<String>,
}Expand description
MerchantResponse
JSON schema
{
"type": "object",
"properties": {
"created_at": {
"examples": [
"2017-04-20T19:30:12.000Z"
],
"type": [
"string",
"null"
]
},
"guid": {
"examples": [
"MCH-7ed79542-884d-2b1b-dd74-501c5cc9d25b"
],
"type": [
"string",
"null"
]
},
"logo_url": {
"examples": [
"https://s3.amazonaws.com/MD_Assets/merchant_logos/comcast.png"
],
"type": [
"string",
"null"
]
},
"name": {
"examples": [
"Comcast"
],
"type": [
"string",
"null"
]
},
"updated_at": {
"examples": [
"2018-09-28T21:13:53.000Z"
],
"type": [
"string",
"null"
]
},
"website_url": {
"examples": [
"https://www.xfinity.com"
],
"type": [
"string",
"null"
]
}
}
}Fields§
§created_at: Option<String>§guid: Option<String>§logo_url: Option<String>§name: Option<String>§updated_at: Option<String>§website_url: Option<String>Trait Implementations§
Source§impl Clone for MerchantResponse
impl Clone for MerchantResponse
Source§fn clone(&self) -> MerchantResponse
fn clone(&self) -> MerchantResponse
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 MerchantResponse
impl Debug for MerchantResponse
Source§impl Default for MerchantResponse
impl Default for MerchantResponse
Source§impl<'de> Deserialize<'de> for MerchantResponse
impl<'de> Deserialize<'de> for MerchantResponse
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<&MerchantResponse> for MerchantResponse
impl From<&MerchantResponse> for MerchantResponse
Source§fn from(value: &MerchantResponse) -> Self
fn from(value: &MerchantResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for MerchantResponse
impl RefUnwindSafe for MerchantResponse
impl Send for MerchantResponse
impl Sync for MerchantResponse
impl Unpin for MerchantResponse
impl UnwindSafe for MerchantResponse
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