pub struct ManagedSubaccountInfoResponse {
pub manager_sub_user_info_vo_list: Vec<ManagedSubaccountInfoResponseManagerSubUserInfoVoListItem>,
pub total: i64,
}
Expand description
ManagedSubaccountInfoResponse
JSON schema
{
"type": "object",
"required": [
"managerSubUserInfoVoList",
"total"
],
"properties": {
"managerSubUserInfoVoList": {
"type": "array",
"items": {
"type": "object",
"required": [
"bindParentEmail",
"bindParentUserId",
"insertTimeStamp",
"isFutureEnabled",
"isMarginEnabled",
"isSignedLVTRiskAgreement",
"isSubUserEnabled",
"isUserActive",
"managersubUserId",
"rootUserId"
],
"properties": {
"bindParentEmail": {
"examples": [
"wdyw8xsh8pey@test.com"
],
"type": "string"
},
"bindParentUserId": {
"examples": [
1000138475669
],
"type": "integer",
"format": "int64"
},
"email": {
"examples": [
"test_0_virtual@kq3kno9imanagedsub.com"
],
"type": "string"
},
"insertTimeStamp": {
"examples": [
1678435149000
],
"type": "integer",
"format": "int64"
},
"isFutureEnabled": {
"examples": [
true
],
"type": "boolean"
},
"isMarginEnabled": {
"examples": [
true
],
"type": "boolean"
},
"isSignedLVTRiskAgreement": {
"examples": [
true
],
"type": "boolean"
},
"isSubUserEnabled": {
"examples": [
true
],
"type": "boolean"
},
"isUserActive": {
"examples": [
true
],
"type": "boolean"
},
"managersubUserId": {
"examples": [
1000137842513
],
"type": "integer",
"format": "int64"
},
"rootUserId": {
"examples": [
1000138475670
],
"type": "integer",
"format": "int64"
}
}
}
},
"total": {
"examples": [
3
],
"type": "integer"
}
}
}
Fields§
§manager_sub_user_info_vo_list: Vec<ManagedSubaccountInfoResponseManagerSubUserInfoVoListItem>
§total: i64
Trait Implementations§
Source§impl Clone for ManagedSubaccountInfoResponse
impl Clone for ManagedSubaccountInfoResponse
Source§fn clone(&self) -> ManagedSubaccountInfoResponse
fn clone(&self) -> ManagedSubaccountInfoResponse
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 ManagedSubaccountInfoResponse
impl<'de> Deserialize<'de> for ManagedSubaccountInfoResponse
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<&ManagedSubaccountInfoResponse> for ManagedSubaccountInfoResponse
impl From<&ManagedSubaccountInfoResponse> for ManagedSubaccountInfoResponse
Source§fn from(value: &ManagedSubaccountInfoResponse) -> Self
fn from(value: &ManagedSubaccountInfoResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ManagedSubaccountInfoResponse
impl RefUnwindSafe for ManagedSubaccountInfoResponse
impl Send for ManagedSubaccountInfoResponse
impl Sync for ManagedSubaccountInfoResponse
impl Unpin for ManagedSubaccountInfoResponse
impl UnwindSafe for ManagedSubaccountInfoResponse
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