pub struct GiftcardCryptographyRsaPublicKeyResponse {
pub code: String,
pub data: String,
pub message: String,
pub success: bool,
}
Expand description
GiftcardCryptographyRsaPublicKeyResponse
JSON schema
{
"type": "object",
"required": [
"code",
"data",
"message",
"success"
],
"properties": {
"code": {
"examples": [
"000000"
],
"type": "string"
},
"data": {
"examples": [
"MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCXBBVKLAc1GQ5FsIFFqOHrPTox5noBONIKr+IAedTR9FkVxq6e65updEbfdhRNkMOeYIO2i0UylrjGC0X8YSoIszmrVHeV0l06Zh1oJuZos1+7N+WLuz9JvlPaawof3GUakTxYWWCa9+8KIbLKsoKMdfS96VT+8iOXO3quMGKUmQIDAQAB"
],
"type": "string"
},
"message": {
"examples": [
"success"
],
"type": "string"
},
"success": {
"examples": [
true
],
"type": "boolean"
}
}
}
Fields§
§code: String
§data: String
§message: String
§success: bool
Trait Implementations§
Source§impl Clone for GiftcardCryptographyRsaPublicKeyResponse
impl Clone for GiftcardCryptographyRsaPublicKeyResponse
Source§fn clone(&self) -> GiftcardCryptographyRsaPublicKeyResponse
fn clone(&self) -> GiftcardCryptographyRsaPublicKeyResponse
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 GiftcardCryptographyRsaPublicKeyResponse
impl<'de> Deserialize<'de> for GiftcardCryptographyRsaPublicKeyResponse
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<&GiftcardCryptographyRsaPublicKeyResponse> for GiftcardCryptographyRsaPublicKeyResponse
impl From<&GiftcardCryptographyRsaPublicKeyResponse> for GiftcardCryptographyRsaPublicKeyResponse
Source§fn from(value: &GiftcardCryptographyRsaPublicKeyResponse) -> Self
fn from(value: &GiftcardCryptographyRsaPublicKeyResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for GiftcardCryptographyRsaPublicKeyResponse
impl RefUnwindSafe for GiftcardCryptographyRsaPublicKeyResponse
impl Send for GiftcardCryptographyRsaPublicKeyResponse
impl Sync for GiftcardCryptographyRsaPublicKeyResponse
impl Unpin for GiftcardCryptographyRsaPublicKeyResponse
impl UnwindSafe for GiftcardCryptographyRsaPublicKeyResponse
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