pub struct TransactionIncludesResponseRepeatingTransaction {
pub guid: Option<String>,
pub recurrence_type: Option<TransactionIncludesResponseRepeatingTransactionRecurrenceType>,
pub repeating_transaction_type: Option<TransactionIncludesResponseRepeatingTransactionRepeatingTransactionType>,
}Expand description
TransactionIncludesResponseRepeatingTransaction
JSON schema
{
"type": "object",
"properties": {
"guid": {
"examples": [
"RPT-065b8b1d-826a-45ce-8487-60ca1510e72a"
],
"type": "string"
},
"recurrence_type": {
"type": "string",
"enum": [
"EVERY_OTHER_WEEK"
]
},
"repeating_transaction_type": {
"type": "string",
"enum": [
"BILL",
"SUBSCRIPTION",
"INCOME",
"UNKNOWN"
]
}
}
}Fields§
§guid: Option<String>§recurrence_type: Option<TransactionIncludesResponseRepeatingTransactionRecurrenceType>§repeating_transaction_type: Option<TransactionIncludesResponseRepeatingTransactionRepeatingTransactionType>Trait Implementations§
Source§impl Clone for TransactionIncludesResponseRepeatingTransaction
impl Clone for TransactionIncludesResponseRepeatingTransaction
Source§fn clone(&self) -> TransactionIncludesResponseRepeatingTransaction
fn clone(&self) -> TransactionIncludesResponseRepeatingTransaction
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 TransactionIncludesResponseRepeatingTransaction
impl<'de> Deserialize<'de> for TransactionIncludesResponseRepeatingTransaction
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<&TransactionIncludesResponseRepeatingTransaction> for TransactionIncludesResponseRepeatingTransaction
impl From<&TransactionIncludesResponseRepeatingTransaction> for TransactionIncludesResponseRepeatingTransaction
Source§fn from(value: &TransactionIncludesResponseRepeatingTransaction) -> Self
fn from(value: &TransactionIncludesResponseRepeatingTransaction) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for TransactionIncludesResponseRepeatingTransaction
impl RefUnwindSafe for TransactionIncludesResponseRepeatingTransaction
impl Send for TransactionIncludesResponseRepeatingTransaction
impl Sync for TransactionIncludesResponseRepeatingTransaction
impl Unpin for TransactionIncludesResponseRepeatingTransaction
impl UnwindSafe for TransactionIncludesResponseRepeatingTransaction
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