aboutsummaryrefslogtreecommitdiffstats
path: root/src/models/payee_location_response.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/models/payee_location_response.rs')
-rw-r--r--src/models/payee_location_response.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/models/payee_location_response.rs b/src/models/payee_location_response.rs
index 66e2698..162d6d5 100644
--- a/src/models/payee_location_response.rs
+++ b/src/models/payee_location_response.rs
@@ -10,6 +10,7 @@
+
#[derive(Debug, PartialEq, Serialize, Deserialize)]
pub struct PayeeLocationResponse {
#[serde(rename = "data")]
@@ -19,7 +20,7 @@ pub struct PayeeLocationResponse {
impl PayeeLocationResponse {
pub fn new(data: crate::models::PayeeLocationResponseData) -> PayeeLocationResponse {
PayeeLocationResponse {
- data: data,
+ data,
}
}
}