pub struct PatchAccountSchema {
pub id: String,
pub account_number: Option<String>,
pub routing_number: Option<String>,
pub access_limits: Option<Vec<Value>>,
}
Fields§
§id: String
Internal account ID
account_number: Option<String>
Account number of booked account
routing_number: Option<String>
Routing number of booked account
access_limits: Option<Vec<Value>>
access limits for the given account
Trait Implementations§
Source§impl Debug for PatchAccountSchema
impl Debug for PatchAccountSchema
Source§impl<'de> Deserialize<'de> for PatchAccountSchema
impl<'de> Deserialize<'de> for PatchAccountSchema
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 Display for PatchAccountSchema
impl Display for PatchAccountSchema
Auto Trait Implementations§
impl Freeze for PatchAccountSchema
impl RefUnwindSafe for PatchAccountSchema
impl Send for PatchAccountSchema
impl Sync for PatchAccountSchema
impl Unpin for PatchAccountSchema
impl UnwindSafe for PatchAccountSchema
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