From a942c7c8e17eb829ef1581c0b556665784f19e33 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Thu, 7 Nov 2019 03:57:33 -0500 Subject: update openapi spec and regenerate with newer openapi-generator the newer openapi-generator picks up fixes for optional parameters, among other things --- src/models/bulk_response_data_bulk.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/models/bulk_response_data_bulk.rs') diff --git a/src/models/bulk_response_data_bulk.rs b/src/models/bulk_response_data_bulk.rs index 538f48c..4ca0e45 100644 --- a/src/models/bulk_response_data_bulk.rs +++ b/src/models/bulk_response_data_bulk.rs @@ -10,6 +10,7 @@ + #[derive(Debug, PartialEq, Serialize, Deserialize)] pub struct BulkResponseDataBulk { /// The list of Transaction ids that were created. @@ -23,8 +24,8 @@ pub struct BulkResponseDataBulk { impl BulkResponseDataBulk { pub fn new(transaction_ids: Vec, duplicate_import_ids: Vec) -> BulkResponseDataBulk { BulkResponseDataBulk { - transaction_ids: transaction_ids, - duplicate_import_ids: duplicate_import_ids, + transaction_ids, + duplicate_import_ids, } } } -- cgit v1.2.3-54-g00ecf