pub struct AccountNumberResponse {
pub account_guid: Option<String>,
pub account_number: Option<String>,
pub guid: Option<String>,
pub institution_number: Option<String>,
pub loan_guarantor: Option<String>,
pub loan_reference_number: Option<String>,
pub member_guid: Option<String>,
pub passed_validation: Option<bool>,
pub routing_number: Option<String>,
pub sequence_number: Option<String>,
pub transit_number: Option<String>,
pub user_guid: Option<String>,
}Expand description
AccountNumberResponse
JSON schema
{
"type": "object",
"properties": {
"account_guid": {
"examples": [
"ACT-06d7f45b-caae-0f6e-1384-01f52e75dcb1"
],
"type": [
"string",
"null"
]
},
"account_number": {
"examples": [
"10001"
],
"type": [
"string",
"null"
]
},
"guid": {
"examples": [
"ACN-8899832e-e5b4-42cd-aa25-bbf1dc889a8f"
],
"type": [
"string",
"null"
]
},
"institution_number": {
"examples": [
"123"
],
"type": [
"string",
"null"
]
},
"loan_guarantor": {
"examples": [
"U.S. DEPARTMENT OF EDUCATION (123456)"
],
"type": [
"string",
"null"
]
},
"loan_reference_number": {
"examples": [
"123456789012345"
],
"type": [
"string",
"null"
]
},
"member_guid": {
"examples": [
"MBR-7c6f361b-e582-15b6-60c0-358f12466b4b"
],
"type": [
"string",
"null"
]
},
"passed_validation": {
"examples": [
true
],
"type": [
"boolean",
"null"
]
},
"routing_number": {
"examples": [
"68899990000000"
],
"type": [
"string",
"null"
]
},
"sequence_number": {
"examples": [
"1-01"
],
"type": [
"string",
"null"
]
},
"transit_number": {
"examples": [
"12345"
],
"type": [
"string",
"null"
]
},
"user_guid": {
"examples": [
"USR-fa7537f3-48aa-a683-a02a-b18940482f54"
],
"type": [
"string",
"null"
]
}
}
}Fields§
§account_guid: Option<String>§account_number: Option<String>§guid: Option<String>§institution_number: Option<String>§loan_guarantor: Option<String>§loan_reference_number: Option<String>§member_guid: Option<String>§passed_validation: Option<bool>§routing_number: Option<String>§sequence_number: Option<String>§transit_number: Option<String>§user_guid: Option<String>Trait Implementations§
Source§impl Clone for AccountNumberResponse
impl Clone for AccountNumberResponse
Source§fn clone(&self) -> AccountNumberResponse
fn clone(&self) -> AccountNumberResponse
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 AccountNumberResponse
impl Debug for AccountNumberResponse
Source§impl Default for AccountNumberResponse
impl Default for AccountNumberResponse
Source§impl<'de> Deserialize<'de> for AccountNumberResponse
impl<'de> Deserialize<'de> for AccountNumberResponse
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<&AccountNumberResponse> for AccountNumberResponse
impl From<&AccountNumberResponse> for AccountNumberResponse
Source§fn from(value: &AccountNumberResponse) -> Self
fn from(value: &AccountNumberResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AccountNumberResponse
impl RefUnwindSafe for AccountNumberResponse
impl Send for AccountNumberResponse
impl Sync for AccountNumberResponse
impl Unpin for AccountNumberResponse
impl UnwindSafe for AccountNumberResponse
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