From 4c94e5f9101c14bfc5c6989d11ea6c855c809f0b Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Sat, 14 Sep 2019 14:19:01 -0400 Subject: update openapi spec --- src/models/payee_location_response_data.rs | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'src/models/payee_location_response_data.rs') diff --git a/src/models/payee_location_response_data.rs b/src/models/payee_location_response_data.rs index 869c4ea..0da3992 100644 --- a/src/models/payee_location_response_data.rs +++ b/src/models/payee_location_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 PayeeLocationResponseData { #[serde(rename = "payee_location")] - pub payee_location: ::models::PayeeLocation, + pub payee_location: crate::models::PayeeLocation, } impl PayeeLocationResponseData { - pub fn new(payee_location: ::models::PayeeLocation) -> PayeeLocationResponseData { + pub fn new(payee_location: crate::models::PayeeLocation) -> PayeeLocationResponseData { PayeeLocationResponseData { payee_location: payee_location, } -- cgit v1.2.3-54-g00ecf