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