pub struct QuerySubAccountSubAccountApiIpRestrictionResponse {
pub api_key: String,
pub ip_list: Vec<String>,
pub ip_restrict: String,
pub update_time: i64,
}
Expand description
QuerySubAccountSubAccountApiIpRestrictionResponse
JSON schema
{
"type": "object",
"required": [
"apiKey",
"ipList",
"ipRestrict",
"updateTime"
],
"properties": {
"apiKey": {
"examples": [
"k5V49ldtn4tszj6W3hystegdfvmGbqDzjmkCtpTvC0G74WhK7yd4rfCTo4lShf"
],
"type": "string"
},
"ipList": {
"examples": [
[
"69.210.67.14",
"8.34.21.10"
]
],
"type": "array",
"items": {
"type": "string"
}
},
"ipRestrict": {
"examples": [
"true"
],
"type": "string"
},
"updateTime": {
"examples": [
1636369557189
],
"type": "integer",
"format": "int64"
}
}
}
Fields§
§api_key: String
§ip_list: Vec<String>
§ip_restrict: String
§update_time: i64
Trait Implementations§
Source§impl Clone for QuerySubAccountSubAccountApiIpRestrictionResponse
impl Clone for QuerySubAccountSubAccountApiIpRestrictionResponse
Source§fn clone(&self) -> QuerySubAccountSubAccountApiIpRestrictionResponse
fn clone(&self) -> QuerySubAccountSubAccountApiIpRestrictionResponse
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 QuerySubAccountSubAccountApiIpRestrictionResponse
impl<'de> Deserialize<'de> for QuerySubAccountSubAccountApiIpRestrictionResponse
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<&QuerySubAccountSubAccountApiIpRestrictionResponse> for QuerySubAccountSubAccountApiIpRestrictionResponse
impl From<&QuerySubAccountSubAccountApiIpRestrictionResponse> for QuerySubAccountSubAccountApiIpRestrictionResponse
Source§fn from(value: &QuerySubAccountSubAccountApiIpRestrictionResponse) -> Self
fn from(value: &QuerySubAccountSubAccountApiIpRestrictionResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for QuerySubAccountSubAccountApiIpRestrictionResponse
impl RefUnwindSafe for QuerySubAccountSubAccountApiIpRestrictionResponse
impl Send for QuerySubAccountSubAccountApiIpRestrictionResponse
impl Sync for QuerySubAccountSubAccountApiIpRestrictionResponse
impl Unpin for QuerySubAccountSubAccountApiIpRestrictionResponse
impl UnwindSafe for QuerySubAccountSubAccountApiIpRestrictionResponse
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