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