pub struct TransactionIncludesResponseClassification {
pub guid: Option<String>,
pub parent_class: Option<TransactionIncludesResponseClassificationParentClass>,
}Expand description
TransactionIncludesResponseClassification
JSON schema
{
"type": "object",
"properties": {
"guid": {
"examples": [
"MNC-3ad50f86-60d0-4545-a1f9-e66c2ac40f69"
],
"type": "string"
},
"parent_class": {
"examples": [
"Deposit"
],
"type": "string",
"enum": [
"Payroll",
"Deposit",
"Savings",
"Transfer",
"Refunds",
"Spend",
"Investment",
"Buy",
"Sell",
"Income",
"Fees",
"Expenses",
"Corporate Actions",
"Other"
]
}
}
}Fields§
§guid: Option<String>§parent_class: Option<TransactionIncludesResponseClassificationParentClass>Trait Implementations§
Source§impl Clone for TransactionIncludesResponseClassification
impl Clone for TransactionIncludesResponseClassification
Source§fn clone(&self) -> TransactionIncludesResponseClassification
fn clone(&self) -> TransactionIncludesResponseClassification
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 TransactionIncludesResponseClassification
impl<'de> Deserialize<'de> for TransactionIncludesResponseClassification
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<&TransactionIncludesResponseClassification> for TransactionIncludesResponseClassification
impl From<&TransactionIncludesResponseClassification> for TransactionIncludesResponseClassification
Source§fn from(value: &TransactionIncludesResponseClassification) -> Self
fn from(value: &TransactionIncludesResponseClassification) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for TransactionIncludesResponseClassification
impl RefUnwindSafe for TransactionIncludesResponseClassification
impl Send for TransactionIncludesResponseClassification
impl Sync for TransactionIncludesResponseClassification
impl Unpin for TransactionIncludesResponseClassification
impl UnwindSafe for TransactionIncludesResponseClassification
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