aboutsummaryrefslogtreecommitdiffstats
path: root/src/models/account_response_data.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/models/account_response_data.rs')
-rw-r--r--src/models/account_response_data.rs9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/models/account_response_data.rs b/src/models/account_response_data.rs
index 9340a0f..c74e20a 100644
--- a/src/models/account_response_data.rs
+++ b/src/models/account_response_data.rs
@@ -9,18 +9,15 @@
*/
-#[allow(unused_imports)]
-use serde_json::Value;
-
-#[derive(Debug, Serialize, Deserialize)]
+#[derive(Debug, PartialEq, Serialize, Deserialize)]
pub struct AccountResponseData {
#[serde(rename = "account")]
- pub account: ::models::Account,
+ pub account: crate::models::Account,
}
impl AccountResponseData {
- pub fn new(account: ::models::Account) -> AccountResponseData {
+ pub fn new(account: crate::models::Account) -> AccountResponseData {
AccountResponseData {
account: account,
}