data-and-reporting-sdk 1.2.0 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (220) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE +1 -1
  3. data/README.md +66 -35
  4. data/lib/shell_data_reporting_ap_is/api_helper.rb +2 -2
  5. data/lib/shell_data_reporting_ap_is/client.rb +11 -12
  6. data/lib/shell_data_reporting_ap_is/configuration.rb +23 -25
  7. data/lib/shell_data_reporting_ap_is/controllers/base_controller.rb +3 -9
  8. data/lib/shell_data_reporting_ap_is/controllers/customer_controller.rb +251 -288
  9. data/lib/shell_data_reporting_ap_is/controllers/invoice_controller.rb +20 -20
  10. data/lib/shell_data_reporting_ap_is/controllers/o_auth_authorization_controller.rb +8 -8
  11. data/lib/shell_data_reporting_ap_is/controllers/transaction_controller.rb +204 -259
  12. data/lib/shell_data_reporting_ap_is/exceptions/api_exception.rb +13 -2
  13. data/lib/shell_data_reporting_ap_is/exceptions/error_object_exception.rb +20 -5
  14. data/lib/shell_data_reporting_ap_is/exceptions/o_auth_provider_exception.rb +21 -5
  15. data/lib/shell_data_reporting_ap_is/http/auth/{bearer_token.rb → o_auth2.rb} +28 -27
  16. data/lib/shell_data_reporting_ap_is/http/http_call_back.rb +2 -2
  17. data/lib/shell_data_reporting_ap_is/http/http_method_enum.rb +2 -2
  18. data/lib/shell_data_reporting_ap_is/http/http_request.rb +2 -2
  19. data/lib/shell_data_reporting_ap_is/http/http_response.rb +2 -2
  20. data/lib/shell_data_reporting_ap_is/http/proxy_settings.rb +13 -0
  21. data/lib/shell_data_reporting_ap_is/models/account_access.rb +19 -2
  22. data/lib/shell_data_reporting_ap_is/models/account_req.rb +84 -0
  23. data/lib/shell_data_reporting_ap_is/models/account_request.rb +29 -3
  24. data/lib/shell_data_reporting_ap_is/models/account_res.rb +158 -0
  25. data/lib/shell_data_reporting_ap_is/models/account_response_accounts_items.rb +81 -2
  26. data/lib/shell_data_reporting_ap_is/models/accounts.rb +15 -2
  27. data/lib/shell_data_reporting_ap_is/models/address.rb +23 -2
  28. data/lib/shell_data_reporting_ap_is/models/associated_account.rb +20 -2
  29. data/lib/shell_data_reporting_ap_is/models/audit_array_elements.rb +71 -0
  30. data/lib/shell_data_reporting_ap_is/models/audit_req.rb +84 -0
  31. data/lib/shell_data_reporting_ap_is/models/audit_request.rb +44 -35
  32. data/lib/shell_data_reporting_ap_is/models/audit_response.rb +98 -47
  33. data/lib/shell_data_reporting_ap_is/models/audit_response_audits_items.rb +73 -4
  34. data/lib/shell_data_reporting_ap_is/models/bank_account.rb +24 -2
  35. data/lib/shell_data_reporting_ap_is/models/base_model.rb +2 -2
  36. data/lib/shell_data_reporting_ap_is/models/bonus_configuration.rb +47 -2
  37. data/lib/shell_data_reporting_ap_is/models/bonus_history.rb +49 -2
  38. data/lib/shell_data_reporting_ap_is/models/card_day_time_restrictions.rb +19 -2
  39. data/lib/shell_data_reporting_ap_is/models/card_exceptions.rb +29 -2
  40. data/lib/shell_data_reporting_ap_is/models/card_group_req.rb +84 -0
  41. data/lib/shell_data_reporting_ap_is/models/card_group_request.rb +21 -27
  42. data/lib/shell_data_reporting_ap_is/models/card_group_res.rb +158 -0
  43. data/lib/shell_data_reporting_ap_is/models/card_group_response_card_groups_items.rb +36 -2
  44. data/lib/shell_data_reporting_ap_is/models/card_type_req.rb +62 -0
  45. data/lib/shell_data_reporting_ap_is/models/card_type_request.rb +21 -2
  46. data/lib/shell_data_reporting_ap_is/models/card_type_res.rb +91 -0
  47. data/lib/shell_data_reporting_ap_is/models/card_type_response_customer_card_types_items.rb +55 -3
  48. data/lib/shell_data_reporting_ap_is/models/card_usage_restrictions.rb +40 -2
  49. data/lib/shell_data_reporting_ap_is/models/card_usage_summary_req.rb +62 -0
  50. data/lib/shell_data_reporting_ap_is/models/card_usage_summary_request.rb +21 -2
  51. data/lib/shell_data_reporting_ap_is/models/card_usage_summary_res.rb +116 -0
  52. data/lib/shell_data_reporting_ap_is/models/card_usage_summary_response.rb +16 -22
  53. data/lib/shell_data_reporting_ap_is/models/col_co_access.rb +20 -4
  54. data/lib/shell_data_reporting_ap_is/models/current_volume.rb +18 -2
  55. data/lib/shell_data_reporting_ap_is/models/customer_contract.rb +15 -2
  56. data/lib/shell_data_reporting_ap_is/models/customer_detail_request.rb +20 -4
  57. data/lib/shell_data_reporting_ap_is/models/customer_detail_response.rb +43 -27
  58. data/lib/shell_data_reporting_ap_is/models/customer_price_list_req.rb +62 -0
  59. data/lib/shell_data_reporting_ap_is/models/customer_price_list_request.rb +24 -2
  60. data/lib/shell_data_reporting_ap_is/models/customer_price_list_res.rb +91 -0
  61. data/lib/shell_data_reporting_ap_is/models/customer_price_list_response.rb +17 -26
  62. data/lib/shell_data_reporting_ap_is/models/customer_req.rb +62 -0
  63. data/lib/shell_data_reporting_ap_is/models/customer_res.rb +91 -0
  64. data/lib/shell_data_reporting_ap_is/models/delivery_addresses.rb +30 -2
  65. data/lib/shell_data_reporting_ap_is/models/eid_access.rb +17 -3
  66. data/lib/shell_data_reporting_ap_is/models/eid_document.rb +23 -2
  67. data/lib/shell_data_reporting_ap_is/models/eid_document_response.rb +19 -2
  68. data/lib/shell_data_reporting_ap_is/models/eid_download_req.rb +18 -2
  69. data/lib/shell_data_reporting_ap_is/models/eid_download_request.rb +14 -2
  70. data/lib/shell_data_reporting_ap_is/models/eid_search_req.rb +21 -2
  71. data/lib/shell_data_reporting_ap_is/models/eid_search_request.rb +15 -2
  72. data/lib/shell_data_reporting_ap_is/models/error_details.rb +16 -2
  73. data/lib/shell_data_reporting_ap_is/models/exception_product.rb +14 -2
  74. data/lib/shell_data_reporting_ap_is/models/exception_site_location.rb +14 -2
  75. data/lib/shell_data_reporting_ap_is/models/fee_item.rb +99 -2
  76. data/lib/shell_data_reporting_ap_is/models/fee_item_summary_all_of0.rb +29 -2
  77. data/lib/shell_data_reporting_ap_is/models/fee_rule_location.rb +21 -2
  78. data/lib/shell_data_reporting_ap_is/models/fee_rule_product.rb +18 -2
  79. data/lib/shell_data_reporting_ap_is/models/fee_rule_tier.rb +16 -2
  80. data/lib/shell_data_reporting_ap_is/models/fee_summary_response.rb +67 -34
  81. data/lib/shell_data_reporting_ap_is/models/fees_fee_rule_tiers.rb +20 -2
  82. data/lib/shell_data_reporting_ap_is/models/filters.rb +522 -0
  83. data/lib/shell_data_reporting_ap_is/models/{finance_currency.rb → finance_currency2.rb} +24 -9
  84. data/lib/shell_data_reporting_ap_is/models/fleetmanagement_v1_user_loggedinuser_request.rb +18 -2
  85. data/lib/shell_data_reporting_ap_is/models/fuel_consumption_card.rb +15 -2
  86. data/lib/shell_data_reporting_ap_is/models/fuel_consumption_data.rb +32 -2
  87. data/lib/shell_data_reporting_ap_is/models/fuel_consumption_req.rb +62 -0
  88. data/lib/shell_data_reporting_ap_is/models/fuel_consumption_request.rb +21 -2
  89. data/lib/shell_data_reporting_ap_is/models/fuel_consumption_response.rb +68 -29
  90. data/lib/shell_data_reporting_ap_is/models/invoice_dates_data.rb +15 -2
  91. data/lib/shell_data_reporting_ap_is/models/invoice_dates_request.rb +14 -2
  92. data/lib/shell_data_reporting_ap_is/models/invoice_dates_request_filters.rb +18 -2
  93. data/lib/shell_data_reporting_ap_is/models/invoice_dates_response_data.rb +15 -2
  94. data/lib/shell_data_reporting_ap_is/models/invoice_distribution_method.rb +17 -2
  95. data/lib/shell_data_reporting_ap_is/models/invoice_download_req.rb +18 -2
  96. data/lib/shell_data_reporting_ap_is/models/invoice_download_request.rb +14 -2
  97. data/lib/shell_data_reporting_ap_is/models/invoice_search_additional_document.rb +16 -2
  98. data/lib/shell_data_reporting_ap_is/models/invoice_search_details.rb +95 -2
  99. data/lib/shell_data_reporting_ap_is/models/invoice_search_request.rb +16 -2
  100. data/lib/shell_data_reporting_ap_is/models/invoice_search_request_filters.rb +32 -2
  101. data/lib/shell_data_reporting_ap_is/models/invoice_search_response.rb +18 -2
  102. data/lib/shell_data_reporting_ap_is/models/invoice_summary_details.rb +23 -2
  103. data/lib/shell_data_reporting_ap_is/models/invoice_summary_request.rb +14 -2
  104. data/lib/shell_data_reporting_ap_is/models/invoice_summary_request_filters.rb +32 -2
  105. data/lib/shell_data_reporting_ap_is/models/invoice_summary_response.rb +15 -2
  106. data/lib/shell_data_reporting_ap_is/models/invoices_summaries.rb +33 -2
  107. data/lib/shell_data_reporting_ap_is/models/last_statement_of_account.rb +47 -2
  108. data/lib/shell_data_reporting_ap_is/models/last_statement_of_account2.rb +457 -0
  109. data/lib/shell_data_reporting_ap_is/models/location.rb +74 -0
  110. data/lib/shell_data_reporting_ap_is/models/logged_in_user_req.rb +63 -0
  111. data/lib/shell_data_reporting_ap_is/models/logged_in_user_res.rb +91 -0
  112. data/lib/shell_data_reporting_ap_is/models/logged_in_user_response.rb +37 -26
  113. data/lib/shell_data_reporting_ap_is/models/monthly_invoice_trend.rb +19 -2
  114. data/lib/shell_data_reporting_ap_is/models/multi_priced_transaction_req.rb +84 -0
  115. data/lib/shell_data_reporting_ap_is/models/multi_priced_transaction_request.rb +32 -2
  116. data/lib/shell_data_reporting_ap_is/models/multi_priced_transaction_request_accounts_items.rb +16 -2
  117. data/lib/shell_data_reporting_ap_is/models/multi_priced_transaction_res.rb +158 -0
  118. data/lib/shell_data_reporting_ap_is/models/multi_priced_transaction_response.rb +16 -51
  119. data/lib/shell_data_reporting_ap_is/models/multi_priced_transaction_response_transactions_items.rb +167 -2
  120. data/lib/shell_data_reporting_ap_is/models/o_auth_provider_error_enum.rb +2 -2
  121. data/lib/shell_data_reporting_ap_is/models/o_auth_token.rb +2 -2
  122. data/lib/shell_data_reporting_ap_is/models/past_statement_of_accounts.rb +60 -2
  123. data/lib/shell_data_reporting_ap_is/models/payer_access.rb +21 -2
  124. data/lib/shell_data_reporting_ap_is/models/payer_details.rb +158 -6
  125. data/lib/shell_data_reporting_ap_is/models/payer_req.rb +84 -0
  126. data/lib/shell_data_reporting_ap_is/models/payer_request.rb +20 -29
  127. data/lib/shell_data_reporting_ap_is/models/payer_res.rb +158 -0
  128. data/lib/shell_data_reporting_ap_is/models/payers.rb +18 -2
  129. data/lib/shell_data_reporting_ap_is/models/payments_since_last_soa.rb +42 -2
  130. data/lib/shell_data_reporting_ap_is/models/pin_advice_types.rb +17 -2
  131. data/lib/shell_data_reporting_ap_is/models/price_list.rb +47 -2
  132. data/lib/shell_data_reporting_ap_is/models/price_trans_summary_req.rb +62 -0
  133. data/lib/shell_data_reporting_ap_is/models/price_trans_summary_request.rb +41 -2
  134. data/lib/shell_data_reporting_ap_is/models/price_transaction_req.rb +84 -0
  135. data/lib/shell_data_reporting_ap_is/models/price_transaction_request.rb +44 -2
  136. data/lib/shell_data_reporting_ap_is/models/priced_request_data.rb +78 -13
  137. data/lib/shell_data_reporting_ap_is/models/priced_response_data.rb +223 -2
  138. data/lib/shell_data_reporting_ap_is/models/priced_trans_summary_resp.rb +116 -0
  139. data/lib/shell_data_reporting_ap_is/models/priced_trans_summary_response_transactions_summary_items.rb +30 -2
  140. data/lib/shell_data_reporting_ap_is/models/priced_transaction_items_location_items.rb +14 -2
  141. data/lib/shell_data_reporting_ap_is/models/priced_transaction_req_v2_invoice_status_enum.rb +2 -2
  142. data/lib/shell_data_reporting_ap_is/models/priced_transaction_req_v2_period_enum.rb +2 -2
  143. data/lib/shell_data_reporting_ap_is/models/priced_transaction_req_v2_sort_order_enum.rb +2 -2
  144. data/lib/shell_data_reporting_ap_is/models/priced_transaction_request_v2.rb +18 -7
  145. data/lib/shell_data_reporting_ap_is/models/priced_transaction_res.rb +158 -0
  146. data/lib/shell_data_reporting_ap_is/models/priced_transaction_resp_v2_refund_flag_enum.rb +2 -2
  147. data/lib/shell_data_reporting_ap_is/models/priced_transaction_response.rb +14 -2
  148. data/lib/shell_data_reporting_ap_is/models/priced_transaction_response_transactions_items.rb +169 -24
  149. data/lib/shell_data_reporting_ap_is/models/priced_transaction_response_v2.rb +17 -2
  150. data/lib/shell_data_reporting_ap_is/models/pricing_current_volume.rb +20 -2
  151. data/lib/shell_data_reporting_ap_is/models/pricing_history.rb +18 -2
  152. data/lib/shell_data_reporting_ap_is/models/purchase_categories.rb +16 -2
  153. data/lib/shell_data_reporting_ap_is/models/recent_transaction_req.rb +28 -2
  154. data/lib/shell_data_reporting_ap_is/models/recent_transaction_request.rb +15 -2
  155. data/lib/shell_data_reporting_ap_is/models/recent_transactions.rb +100 -2
  156. data/lib/shell_data_reporting_ap_is/models/recent_transactions_response.rb +17 -2
  157. data/lib/shell_data_reporting_ap_is/models/role.rb +19 -2
  158. data/lib/shell_data_reporting_ap_is/models/search_doc_req.rb +30 -2
  159. data/lib/shell_data_reporting_ap_is/models/search_documents_invoice.rb +26 -2
  160. data/lib/shell_data_reporting_ap_is/models/search_documents_request.rb +15 -2
  161. data/lib/shell_data_reporting_ap_is/models/search_documents_response.rb +19 -2
  162. data/lib/shell_data_reporting_ap_is/models/search_soa_req.rb +22 -2
  163. data/lib/shell_data_reporting_ap_is/models/search_statement_of_account.rb +29 -2
  164. data/lib/shell_data_reporting_ap_is/models/search_statement_of_account_request.rb +15 -2
  165. data/lib/shell_data_reporting_ap_is/models/search_statement_of_account_response.rb +18 -2
  166. data/lib/shell_data_reporting_ap_is/models/site_location.rb +14 -2
  167. data/lib/shell_data_reporting_ap_is/models/statement_of_account_request.rb +14 -2
  168. data/lib/shell_data_reporting_ap_is/models/statement_of_account_request_filters.rb +26 -2
  169. data/lib/shell_data_reporting_ap_is/models/statement_of_account_resp.rb +27 -9
  170. data/lib/shell_data_reporting_ap_is/models/statement_of_account_response.rb +15 -2
  171. data/lib/shell_data_reporting_ap_is/models/tier.rb +23 -2
  172. data/lib/shell_data_reporting_ap_is/models/transaction_exceptions.rb +132 -5
  173. data/lib/shell_data_reporting_ap_is/models/transaction_exceptions_req.rb +62 -0
  174. data/lib/shell_data_reporting_ap_is/models/transaction_exceptions_request.rb +27 -2
  175. data/lib/shell_data_reporting_ap_is/models/transaction_exceptions_res.rb +116 -0
  176. data/lib/shell_data_reporting_ap_is/models/transaction_exceptions_response.rb +18 -23
  177. data/lib/shell_data_reporting_ap_is/models/transaction_fees_req.rb +84 -0
  178. data/lib/shell_data_reporting_ap_is/models/transaction_fees_request.rb +30 -24
  179. data/lib/shell_data_reporting_ap_is/models/transaction_fees_res.rb +158 -0
  180. data/lib/shell_data_reporting_ap_is/models/transaction_fees_summary_req.rb +62 -0
  181. data/lib/shell_data_reporting_ap_is/models/update_odometer.rb +16 -2
  182. data/lib/shell_data_reporting_ap_is/models/update_odometer_reference.rb +16 -2
  183. data/lib/shell_data_reporting_ap_is/models/update_odometer_request.rb +20 -2
  184. data/lib/shell_data_reporting_ap_is/models/update_odometer_resp.rb +116 -0
  185. data/lib/shell_data_reporting_ap_is/models/update_odometer_response.rb +18 -23
  186. data/lib/shell_data_reporting_ap_is/models/usage_summary.rb +25 -2
  187. data/lib/shell_data_reporting_ap_is/models/volume_based_bonus_req.rb +62 -0
  188. data/lib/shell_data_reporting_ap_is/models/volume_based_bonus_request.rb +19 -2
  189. data/lib/shell_data_reporting_ap_is/models/volume_based_bonus_res.rb +116 -0
  190. data/lib/shell_data_reporting_ap_is/models/volume_based_bonus_response.rb +19 -23
  191. data/lib/shell_data_reporting_ap_is/models/volume_based_pricing_req.rb +62 -0
  192. data/lib/shell_data_reporting_ap_is/models/volume_based_pricing_request.rb +17 -2
  193. data/lib/shell_data_reporting_ap_is/models/volume_based_pricing_res.rb +91 -0
  194. data/lib/shell_data_reporting_ap_is/models/volume_based_pricing_response.rb +40 -20
  195. data/lib/shell_data_reporting_ap_is/models/warning.rb +69 -0
  196. data/lib/shell_data_reporting_ap_is/utilities/date_time_helper.rb +2 -2
  197. data/lib/shell_data_reporting_ap_is/utilities/file_wrapper.rb +16 -4
  198. data/lib/shell_data_reporting_ap_is/utilities/union_type_lookup.rb +2 -2
  199. data/lib/shell_data_reporting_ap_is.rb +54 -29
  200. data/test/controllers/controller_test_base.rb +2 -2
  201. data/test/controllers/test_invoice_controller.rb +3 -12
  202. data/test/controllers/test_transaction_controller.rb +3 -5
  203. data/test/http_response_catcher.rb +3 -3
  204. metadata +50 -26
  205. data/lib/shell_data_reporting_ap_is/exceptions/default_error_exception.rb +0 -32
  206. data/lib/shell_data_reporting_ap_is/exceptions/error_user_access_error1_exception.rb +0 -32
  207. data/lib/shell_data_reporting_ap_is/http/auth/basic_auth.rb +0 -50
  208. data/lib/shell_data_reporting_ap_is/models/account_response.rb +0 -107
  209. data/lib/shell_data_reporting_ap_is/models/card_group_response.rb +0 -105
  210. data/lib/shell_data_reporting_ap_is/models/card_type_response.rb +0 -77
  211. data/lib/shell_data_reporting_ap_is/models/card_type_response_error.rb +0 -59
  212. data/lib/shell_data_reporting_ap_is/models/default_error_fault.rb +0 -59
  213. data/lib/shell_data_reporting_ap_is/models/default_error_fault_detail.rb +0 -50
  214. data/lib/shell_data_reporting_ap_is/models/error_status.rb +0 -69
  215. data/lib/shell_data_reporting_ap_is/models/error_user_access.rb +0 -50
  216. data/lib/shell_data_reporting_ap_is/models/error_user_access_error.rb +0 -59
  217. data/lib/shell_data_reporting_ap_is/models/logged_in_user_request.rb +0 -105
  218. data/lib/shell_data_reporting_ap_is/models/payer_response.rb +0 -111
  219. data/lib/shell_data_reporting_ap_is/models/priced_trans_summary_response.rb +0 -77
  220. data/lib/shell_data_reporting_ap_is/models/transaction_fees_response.rb +0 -107
@@ -1,7 +1,7 @@
1
1
  # shell_data_reporting_ap_is
2
2
  #
3
- # This file was automatically generated by APIMATIC v2.0
4
- # ( https://apimatic.io ).
3
+ # This file was automatically generated by
4
+ # APIMATIC v3.0 ( https://www.apimatic.io ).
5
5
 
6
6
  module ShellDataReportingApIs
7
7
  # PriceTransactionRequest Model.
@@ -550,5 +550,47 @@ module ShellDataReportingApIs
550
550
  current_page,
551
551
  page_size)
552
552
  end
553
+
554
+ # Provides a human-readable string representation of the object.
555
+ def to_s
556
+ class_name = self.class.name.split('::').last
557
+ "<#{class_name} col_co_id: #{@col_co_id}, col_co_code: #{@col_co_code}, payer_id:"\
558
+ " #{@payer_id}, payer_number: #{@payer_number}, accounts: #{@accounts}, card_id:"\
559
+ " #{@card_id}, card_pan: #{@card_pan}, driver_name: #{@driver_name},"\
560
+ " vehicle_registration_number: #{@vehicle_registration_number}, invoice_status:"\
561
+ " #{@invoice_status}, product_id: #{@product_id}, product_code: #{@product_code},"\
562
+ " purchased_in_country: #{@purchased_in_country}, card_group_id: #{@card_group_id},"\
563
+ " sort_order: #{@sort_order}, from_date: #{@from_date}, to_date: #{@to_date}, period:"\
564
+ " #{@period}, site_code: #{@site_code}, site_group_id: #{@site_group_id}, posting_date_from:"\
565
+ " #{@posting_date_from}, posting_date_to: #{@posting_date_to}, sales_item_id:"\
566
+ " #{@sales_item_id}, transaction_id: #{@transaction_id}, invoice_date: #{@invoice_date},"\
567
+ " invoice_number: #{@invoice_number}, valid_invoice_date_only: #{@valid_invoice_date_only},"\
568
+ " invoice_from_date: #{@invoice_from_date}, invoice_to_date: #{@invoice_to_date}, fuel_only:"\
569
+ " #{@fuel_only}, include_fees: #{@include_fees}, use_field_id: #{@use_field_id},"\
570
+ " current_page: #{@current_page}, page_size: #{@page_size}>"
571
+ end
572
+
573
+ # Provides a debugging-friendly string with detailed object information.
574
+ def inspect
575
+ class_name = self.class.name.split('::').last
576
+ "<#{class_name} col_co_id: #{@col_co_id.inspect}, col_co_code: #{@col_co_code.inspect},"\
577
+ " payer_id: #{@payer_id.inspect}, payer_number: #{@payer_number.inspect}, accounts:"\
578
+ " #{@accounts.inspect}, card_id: #{@card_id.inspect}, card_pan: #{@card_pan.inspect},"\
579
+ " driver_name: #{@driver_name.inspect}, vehicle_registration_number:"\
580
+ " #{@vehicle_registration_number.inspect}, invoice_status: #{@invoice_status.inspect},"\
581
+ " product_id: #{@product_id.inspect}, product_code: #{@product_code.inspect},"\
582
+ " purchased_in_country: #{@purchased_in_country.inspect}, card_group_id:"\
583
+ " #{@card_group_id.inspect}, sort_order: #{@sort_order.inspect}, from_date:"\
584
+ " #{@from_date.inspect}, to_date: #{@to_date.inspect}, period: #{@period.inspect},"\
585
+ " site_code: #{@site_code.inspect}, site_group_id: #{@site_group_id.inspect},"\
586
+ " posting_date_from: #{@posting_date_from.inspect}, posting_date_to:"\
587
+ " #{@posting_date_to.inspect}, sales_item_id: #{@sales_item_id.inspect}, transaction_id:"\
588
+ " #{@transaction_id.inspect}, invoice_date: #{@invoice_date.inspect}, invoice_number:"\
589
+ " #{@invoice_number.inspect}, valid_invoice_date_only: #{@valid_invoice_date_only.inspect},"\
590
+ " invoice_from_date: #{@invoice_from_date.inspect}, invoice_to_date:"\
591
+ " #{@invoice_to_date.inspect}, fuel_only: #{@fuel_only.inspect}, include_fees:"\
592
+ " #{@include_fees.inspect}, use_field_id: #{@use_field_id.inspect}, current_page:"\
593
+ " #{@current_page.inspect}, page_size: #{@page_size.inspect}>"
594
+ end
553
595
  end
554
596
  end
@@ -1,7 +1,7 @@
1
1
  # shell_data_reporting_ap_is
2
2
  #
3
- # This file was automatically generated by APIMATIC v2.0
4
- # ( https://apimatic.io ).
3
+ # This file was automatically generated by
4
+ # APIMATIC v3.0 ( https://www.apimatic.io ).
5
5
 
6
6
  module ShellDataReportingApIs
7
7
  # This endpoint allows querying the transaction data (i.e. Priced, Billed and
@@ -15,8 +15,12 @@ module ShellDataReportingApIs
15
15
  # @return [String]
16
16
  attr_accessor :col_co_code
17
17
 
18
- # Collecting Company Code (Shell Code) of the selected payer.
19
- # @return [Object]
18
+ # The Collecting Company Id in the Shell Card Platform.
19
+ # @return [Integer]
20
+ attr_accessor :col_co_id
21
+
22
+ # The Collecting Company Id in the Shell Card Platform.
23
+ # @return [PricedTransactionReqV2InvoiceStatusEnum]
20
24
  attr_accessor :invoice_status
21
25
 
22
26
  # Payer Number of the selected payer.
@@ -35,6 +39,10 @@ module ShellDataReportingApIs
35
39
  # @return [String]
36
40
  attr_accessor :driver_name
37
41
 
42
+ # Unique Card Id in the Shell Card Platform
43
+ # @return [Integer]
44
+ attr_accessor :card_id
45
+
38
46
  # Card Group Id in GFN
39
47
  # @return [Integer]
40
48
  attr_accessor :card_group_id
@@ -111,10 +119,7 @@ module ShellDataReportingApIs
111
119
  # @return [String]
112
120
  attr_accessor :to_date
113
121
 
114
- # Pass below one of the value as per the required transaction period
115
- # 1. Last 7 Days
116
- # 2. Last 30 Days
117
- # 3. Last 90 Days
122
+ # To transaction delivery date
118
123
  # @return [PricedTransactionReqV2PeriodEnum]
119
124
  attr_accessor :period
120
125
 
@@ -180,11 +185,13 @@ module ShellDataReportingApIs
180
185
  def self.names
181
186
  @_hash = {} if @_hash.nil?
182
187
  @_hash['col_co_code'] = 'ColCoCode'
188
+ @_hash['col_co_id'] = 'ColCoId'
183
189
  @_hash['invoice_status'] = 'InvoiceStatus'
184
190
  @_hash['payer_number'] = 'PayerNumber'
185
191
  @_hash['account_id'] = 'AccountId'
186
192
  @_hash['account_number'] = 'AccountNumber'
187
193
  @_hash['driver_name'] = 'DriverName'
194
+ @_hash['card_id'] = 'CardId'
188
195
  @_hash['card_group_id'] = 'CardGroupId'
189
196
  @_hash['card_pan'] = 'CardPAN'
190
197
  @_hash['product_code'] = 'ProductCode'
@@ -223,9 +230,11 @@ module ShellDataReportingApIs
223
230
  # An array for optional fields
224
231
  def self.optionals
225
232
  %w[
233
+ col_co_id
226
234
  account_id
227
235
  account_number
228
236
  driver_name
237
+ card_id
229
238
  card_group_id
230
239
  card_pan
231
240
  product_code
@@ -298,11 +307,12 @@ module ShellDataReportingApIs
298
307
  end
299
308
 
300
309
  def initialize(col_co_code = nil, invoice_status = nil, payer_number = nil,
301
- account_id = SKIP, account_number = SKIP, driver_name = SKIP,
302
- card_group_id = SKIP, card_pan = SKIP, product_code = SKIP,
303
- product_name = SKIP, site_code = SKIP,
304
- incoming_site_number = SKIP, invoice_date = SKIP,
305
- invoice_number = SKIP, purchased_in_country_code = SKIP,
310
+ col_co_id = SKIP, account_id = SKIP, account_number = SKIP,
311
+ driver_name = SKIP, card_id = SKIP, card_group_id = SKIP,
312
+ card_pan = SKIP, product_code = SKIP, product_name = SKIP,
313
+ site_code = SKIP, incoming_site_number = SKIP,
314
+ invoice_date = SKIP, invoice_number = SKIP,
315
+ purchased_in_country_code = SKIP,
306
316
  purchased_in_country = SKIP, site_group_id = SKIP,
307
317
  vehicle_registration_number = SKIP, fee_type_id = SKIP,
308
318
  line_item_description = SKIP, cards = SKIP,
@@ -315,11 +325,13 @@ module ShellDataReportingApIs
315
325
  hosting_collecting_company_number = SKIP, search = SKIP,
316
326
  transaction_id = SKIP)
317
327
  @col_co_code = col_co_code
328
+ @col_co_id = col_co_id unless col_co_id == SKIP
318
329
  @invoice_status = invoice_status
319
330
  @payer_number = payer_number
320
331
  @account_id = account_id unless account_id == SKIP
321
332
  @account_number = account_number unless account_number == SKIP
322
333
  @driver_name = driver_name unless driver_name == SKIP
334
+ @card_id = card_id unless card_id == SKIP
323
335
  @card_group_id = card_group_id unless card_group_id == SKIP
324
336
  @card_pan = card_pan unless card_pan == SKIP
325
337
  @product_code = product_code unless product_code == SKIP
@@ -370,9 +382,11 @@ module ShellDataReportingApIs
370
382
  col_co_code = hash.key?('ColCoCode') ? hash['ColCoCode'] : nil
371
383
  invoice_status = hash.key?('InvoiceStatus') ? hash['InvoiceStatus'] : nil
372
384
  payer_number = hash.key?('PayerNumber') ? hash['PayerNumber'] : nil
385
+ col_co_id = hash.key?('ColCoId') ? hash['ColCoId'] : SKIP
373
386
  account_id = hash.key?('AccountId') ? hash['AccountId'] : SKIP
374
387
  account_number = hash.key?('AccountNumber') ? hash['AccountNumber'] : SKIP
375
388
  driver_name = hash.key?('DriverName') ? hash['DriverName'] : SKIP
389
+ card_id = hash.key?('CardId') ? hash['CardId'] : SKIP
376
390
  card_group_id = hash.key?('CardGroupId') ? hash['CardGroupId'] : SKIP
377
391
  card_pan = hash.key?('CardPAN') ? hash['CardPAN'] : SKIP
378
392
  product_code = hash.key?('ProductCode') ? hash['ProductCode'] : SKIP
@@ -420,9 +434,11 @@ module ShellDataReportingApIs
420
434
  PricedRequestData.new(col_co_code,
421
435
  invoice_status,
422
436
  payer_number,
437
+ col_co_id,
423
438
  account_id,
424
439
  account_number,
425
440
  driver_name,
441
+ card_id,
426
442
  card_group_id,
427
443
  card_pan,
428
444
  product_code,
@@ -455,5 +471,54 @@ module ShellDataReportingApIs
455
471
  search,
456
472
  transaction_id)
457
473
  end
474
+
475
+ # Provides a human-readable string representation of the object.
476
+ def to_s
477
+ class_name = self.class.name.split('::').last
478
+ "<#{class_name} col_co_code: #{@col_co_code}, col_co_id: #{@col_co_id}, invoice_status:"\
479
+ " #{@invoice_status}, payer_number: #{@payer_number}, account_id: #{@account_id},"\
480
+ " account_number: #{@account_number}, driver_name: #{@driver_name}, card_id: #{@card_id},"\
481
+ " card_group_id: #{@card_group_id}, card_pan: #{@card_pan}, product_code: #{@product_code},"\
482
+ " product_name: #{@product_name}, site_code: #{@site_code}, incoming_site_number:"\
483
+ " #{@incoming_site_number}, invoice_date: #{@invoice_date}, invoice_number:"\
484
+ " #{@invoice_number}, purchased_in_country_code: #{@purchased_in_country_code},"\
485
+ " purchased_in_country: #{@purchased_in_country}, site_group_id: #{@site_group_id},"\
486
+ " vehicle_registration_number: #{@vehicle_registration_number}, fee_type_id:"\
487
+ " #{@fee_type_id}, line_item_description: #{@line_item_description}, cards: #{@cards},"\
488
+ " sort_order: #{@sort_order}, from_date: #{@from_date}, to_date: #{@to_date}, period:"\
489
+ " #{@period}, posting_date_from: #{@posting_date_from}, posting_date_to:"\
490
+ " #{@posting_date_to}, transaction_item_id: #{@transaction_item_id}, fuel_only:"\
491
+ " #{@fuel_only}, include_fees: #{@include_fees}, is_multipayer: #{@is_multipayer},"\
492
+ " valid_invoice_date_only: #{@valid_invoice_date_only}, invoice_from_date:"\
493
+ " #{@invoice_from_date}, invoice_to_date: #{@invoice_to_date},"\
494
+ " hosting_collecting_company_number: #{@hosting_collecting_company_number}, search:"\
495
+ " #{@search}, transaction_id: #{@transaction_id}>"
496
+ end
497
+
498
+ # Provides a debugging-friendly string with detailed object information.
499
+ def inspect
500
+ class_name = self.class.name.split('::').last
501
+ "<#{class_name} col_co_code: #{@col_co_code.inspect}, col_co_id: #{@col_co_id.inspect},"\
502
+ " invoice_status: #{@invoice_status.inspect}, payer_number: #{@payer_number.inspect},"\
503
+ " account_id: #{@account_id.inspect}, account_number: #{@account_number.inspect},"\
504
+ " driver_name: #{@driver_name.inspect}, card_id: #{@card_id.inspect}, card_group_id:"\
505
+ " #{@card_group_id.inspect}, card_pan: #{@card_pan.inspect}, product_code:"\
506
+ " #{@product_code.inspect}, product_name: #{@product_name.inspect}, site_code:"\
507
+ " #{@site_code.inspect}, incoming_site_number: #{@incoming_site_number.inspect},"\
508
+ " invoice_date: #{@invoice_date.inspect}, invoice_number: #{@invoice_number.inspect},"\
509
+ " purchased_in_country_code: #{@purchased_in_country_code.inspect}, purchased_in_country:"\
510
+ " #{@purchased_in_country.inspect}, site_group_id: #{@site_group_id.inspect},"\
511
+ " vehicle_registration_number: #{@vehicle_registration_number.inspect}, fee_type_id:"\
512
+ " #{@fee_type_id.inspect}, line_item_description: #{@line_item_description.inspect}, cards:"\
513
+ " #{@cards.inspect}, sort_order: #{@sort_order.inspect}, from_date: #{@from_date.inspect},"\
514
+ " to_date: #{@to_date.inspect}, period: #{@period.inspect}, posting_date_from:"\
515
+ " #{@posting_date_from.inspect}, posting_date_to: #{@posting_date_to.inspect},"\
516
+ " transaction_item_id: #{@transaction_item_id.inspect}, fuel_only: #{@fuel_only.inspect},"\
517
+ " include_fees: #{@include_fees.inspect}, is_multipayer: #{@is_multipayer.inspect},"\
518
+ " valid_invoice_date_only: #{@valid_invoice_date_only.inspect}, invoice_from_date:"\
519
+ " #{@invoice_from_date.inspect}, invoice_to_date: #{@invoice_to_date.inspect},"\
520
+ " hosting_collecting_company_number: #{@hosting_collecting_company_number.inspect}, search:"\
521
+ " #{@search.inspect}, transaction_id: #{@transaction_id.inspect}>"
522
+ end
458
523
  end
459
524
  end
@@ -1,7 +1,7 @@
1
1
  # shell_data_reporting_ap_is
2
2
  #
3
- # This file was automatically generated by APIMATIC v2.0
4
- # ( https://apimatic.io ).
3
+ # This file was automatically generated by
4
+ # APIMATIC v3.0 ( https://www.apimatic.io ).
5
5
 
6
6
  module ShellDataReportingApIs
7
7
  # PricedResponseData Model.
@@ -2018,5 +2018,226 @@ module ShellDataReportingApIs
2018
2018
  transaction_id,
2019
2019
  fuel_only)
2020
2020
  end
2021
+
2022
+ # Provides a human-readable string representation of the object.
2023
+ def to_s
2024
+ class_name = self.class.name.split('::').last
2025
+ "<#{class_name} account_name: #{@account_name}, account_id: #{@account_id}, account_number:"\
2026
+ " #{@account_number}, account_short_name: #{@account_short_name}, additional1:"\
2027
+ " #{@additional1}, additional2: #{@additional2}, additional3: #{@additional3}, additional4:"\
2028
+ " #{@additional4}, allow_clearing: #{@allow_clearing}, authorisation_code:"\
2029
+ " #{@authorisation_code}, transaction_status: #{@transaction_status}, driver_name:"\
2030
+ " #{@driver_name}, card_expiry_period: #{@card_expiry_period}, card_expiry: #{@card_expiry},"\
2031
+ " card_group_id: #{@card_group_id}, card_group_name: #{@card_group_name}, issuer_code:"\
2032
+ " #{@issuer_code}, card_pan: #{@card_pan}, release_code: #{@release_code},"\
2033
+ " card_sequence_number: #{@card_sequence_number}, card_type: #{@card_type}, col_co_code:"\
2034
+ " #{@col_co_code}, unit_discount_invoice_currency: #{@unit_discount_invoice_currency},"\
2035
+ " col_co_exchange_rate: #{@col_co_exchange_rate}, invoice_currency_symbol:"\
2036
+ " #{@invoice_currency_symbol}, correction_flag: #{@correction_flag}, crm_number:"\
2037
+ " #{@crm_number}, customer_country: #{@customer_country}, customer_currency_code:"\
2038
+ " #{@customer_currency_code}, customer_currency_symbol: #{@customer_currency_symbol},"\
2039
+ " rebateon_net_amount_in_customer_currency: #{@rebateon_net_amount_in_customer_currency},"\
2040
+ " effective_discount_in_customer_currency: #{@effective_discount_in_customer_currency},"\
2041
+ ' effective_unit_discount_in_customer_currency:'\
2042
+ " #{@effective_unit_discount_in_customer_currency}, unit_price_in_invoice_currency:"\
2043
+ " #{@unit_price_in_invoice_currency}, invoice_tax: #{@invoice_tax}, invoice_gross_amount:"\
2044
+ " #{@invoice_gross_amount}, invoice_net_amount: #{@invoice_net_amount},"\
2045
+ " va_ton_net_amount_in_customer_currency: #{@va_ton_net_amount_in_customer_currency},"\
2046
+ " customer_retail_price_unit_gross: #{@customer_retail_price_unit_gross},"\
2047
+ " customer_retail_value_total_gross: #{@customer_retail_value_total_gross},"\
2048
+ " customer_retail_value_total_net: #{@customer_retail_value_total_net},"\
2049
+ " transaction_type_description: #{@transaction_type_description},"\
2050
+ ' rebateon_net_amount_in_transaction_currency:'\
2051
+ " #{@rebateon_net_amount_in_transaction_currency}, effective_discount_in_trx_currency:"\
2052
+ " #{@effective_discount_in_trx_currency}, del_co_to_col_co_exchange_rate:"\
2053
+ " #{@del_co_to_col_co_exchange_rate}, cards: #{@cards}, unit_discount_transaction_currency:"\
2054
+ " #{@unit_discount_transaction_currency}, transaction_gross_amount:"\
2055
+ " #{@transaction_gross_amount}, transaction_net_amount: #{@transaction_net_amount},"\
2056
+ " transaction_tax: #{@transaction_tax}, va_ton_net_amount: #{@va_ton_net_amount},"\
2057
+ " delco_list_price_unit_net: #{@delco_list_price_unit_net}, delco_retail_price_unit_gross:"\
2058
+ " #{@delco_retail_price_unit_gross}, unit_price_in_transaction_currency:"\
2059
+ " #{@unit_price_in_transaction_currency}, delco_retail_price_unit_net:"\
2060
+ " #{@delco_retail_price_unit_net}, delco_retail_value_total_gross:"\
2061
+ " #{@delco_retail_value_total_gross}, delco_retail_value_total_net:"\
2062
+ " #{@delco_retail_value_total_net}, transaction_currency_symbol:"\
2063
+ " #{@transaction_currency_symbol}, discount_type: #{@discount_type}, dispute_status:"\
2064
+ " #{@dispute_status}, is_shell_site: #{@is_shell_site}, fleet_id_input: #{@fleet_id_input},"\
2065
+ " incoming_product_code: #{@incoming_product_code}, posting_date: #{@posting_date},"\
2066
+ " posting_time: #{@posting_time}, product_code: #{@product_code}, product_name:"\
2067
+ " #{@product_name}, product_group_id: #{@product_group_id}, incoming_currency_code:"\
2068
+ " #{@incoming_currency_code}, incoming_site_description: #{@incoming_site_description},"\
2069
+ " location: #{@location}, site_name: #{@site_name}, site_code: #{@site_code},"\
2070
+ " incoming_site_number: #{@incoming_site_number}, invoice_currency_code:"\
2071
+ " #{@invoice_currency_code}, invoice_date: #{@invoice_date}, invoice_number:"\
2072
+ " #{@invoice_number}, fuel_product: #{@fuel_product}, vat_applicable: #{@vat_applicable},"\
2073
+ " payer_name: #{@payer_name}, payer_number: #{@payer_number}, parent_customer_number:"\
2074
+ " #{@parent_customer_number}, payer_group: #{@payer_group}, payer_group_name:"\
2075
+ " #{@payer_group_name}, check_digit: #{@check_digit}, net_invoice_indicator:"\
2076
+ " #{@net_invoice_indicator}, delco_code: #{@delco_code}, network_code: #{@network_code},"\
2077
+ " purchased_in_country: #{@purchased_in_country}, site_country: #{@site_country},"\
2078
+ " vat_country: #{@vat_country}, delco_name: #{@delco_name}, network: #{@network},"\
2079
+ " odometer_input: #{@odometer_input}, original_sales_item_id: #{@original_sales_item_id},"\
2080
+ " fleet_id_description: #{@fleet_id_description}, parent_customer_id:"\
2081
+ " #{@parent_customer_id}, pin_indicator: #{@pin_indicator}, product_group_name:"\
2082
+ " #{@product_group_name}, purchased_in_country_code: #{@purchased_in_country_code},"\
2083
+ " quantity: #{@quantity}, rebate_rate: #{@rebate_rate}, receipt_number: #{@receipt_number},"\
2084
+ " refund_flag: #{@refund_flag}, site_group_id: #{@site_group_id}, site_group_name:"\
2085
+ " #{@site_group_name}, latitude: #{@latitude}, longitude: #{@longitude},"\
2086
+ " del_co_exchange_rate: #{@del_co_exchange_rate}, euro_rebate_amount:"\
2087
+ " #{@euro_rebate_amount}, net_euro_amount: #{@net_euro_amount}, euro_vat_amount:"\
2088
+ " #{@euro_vat_amount}, parent_customer_name: #{@parent_customer_name}, is_invoiced:"\
2089
+ " #{@is_invoiced}, transaction_currency_code: #{@transaction_currency_code},"\
2090
+ " credit_debit_code: #{@credit_debit_code}, transaction_date: #{@transaction_date},"\
2091
+ " transaction_time: #{@transaction_time}, transaction_item_id: #{@transaction_item_id},"\
2092
+ " trn_identifier: #{@trn_identifier}, type: #{@type}, transaction_line:"\
2093
+ " #{@transaction_line}, transaction_type: #{@transaction_type}, utc_offset: #{@utc_offset},"\
2094
+ " vat_category: #{@vat_category}, vat_rate: #{@vat_rate}, vehicle_registration:"\
2095
+ " #{@vehicle_registration}, is_cancelled: #{@is_cancelled}, col_co_gross_amount:"\
2096
+ " #{@col_co_gross_amount}, col_co_net_amount: #{@col_co_net_amount}, col_co_vat_amount:"\
2097
+ " #{@col_co_vat_amount}, original_currency_symbol: #{@original_currency_symbol},"\
2098
+ " original_currency_code: #{@original_currency_code}, original_vat_amount:"\
2099
+ " #{@original_vat_amount}, emboss_text: #{@emboss_text}, original_exchange_rate:"\
2100
+ " #{@original_exchange_rate}, original_transaction_item_invoice_date:"\
2101
+ " #{@original_transaction_item_invoice_date}, fee_type_id: #{@fee_type_id},"\
2102
+ " line_item_description: #{@line_item_description}, fee_rule_description:"\
2103
+ " #{@fee_rule_description}, frequency: #{@frequency}, fee_rule_id: #{@fee_rule_id},"\
2104
+ " system_entry_date: #{@system_entry_date}, system_entry_time: #{@system_entry_time},"\
2105
+ " is_manual: #{@is_manual}, original_transaction_item_id: #{@original_transaction_item_id},"\
2106
+ " original_transaction_item_invoice_number: #{@original_transaction_item_invoice_number},"\
2107
+ " original_transaction_item_invoice_id: #{@original_transaction_item_invoice_id},"\
2108
+ " payer_short_name: #{@payer_short_name}, reverse_charge: #{@reverse_charge},"\
2109
+ " original_gross_amount: #{@original_gross_amount}, original_net_amount:"\
2110
+ " #{@original_net_amount}, unit_of_measure: #{@unit_of_measure}, road_type: #{@road_type},"\
2111
+ " customer_country_iso_code: #{@customer_country_iso_code}, ev_operator: #{@ev_operator},"\
2112
+ " ev_serial_id: #{@ev_serial_id}, ev_charge_point_serial: #{@ev_charge_point_serial},"\
2113
+ " ev_charge_point_connector_type: #{@ev_charge_point_connector_type},"\
2114
+ ' ev_charge_point_connector_type_description:'\
2115
+ " #{@ev_charge_point_connector_type_description}, ev_charge_duration:"\
2116
+ " #{@ev_charge_duration}, ev_charge_start_date: #{@ev_charge_start_date},"\
2117
+ " ev_charge_start_time: #{@ev_charge_start_time}, ev_charge_end_date:"\
2118
+ " #{@ev_charge_end_date}, ev_charge_end_time: #{@ev_charge_end_time},"\
2119
+ " hosting_collecting_company_number: #{@hosting_collecting_company_number}, transaction_id:"\
2120
+ " #{@transaction_id}, fuel_only: #{@fuel_only}>"
2121
+ end
2122
+
2123
+ # Provides a debugging-friendly string with detailed object information.
2124
+ def inspect
2125
+ class_name = self.class.name.split('::').last
2126
+ "<#{class_name} account_name: #{@account_name.inspect}, account_id: #{@account_id.inspect},"\
2127
+ " account_number: #{@account_number.inspect}, account_short_name:"\
2128
+ " #{@account_short_name.inspect}, additional1: #{@additional1.inspect}, additional2:"\
2129
+ " #{@additional2.inspect}, additional3: #{@additional3.inspect}, additional4:"\
2130
+ " #{@additional4.inspect}, allow_clearing: #{@allow_clearing.inspect}, authorisation_code:"\
2131
+ " #{@authorisation_code.inspect}, transaction_status: #{@transaction_status.inspect},"\
2132
+ " driver_name: #{@driver_name.inspect}, card_expiry_period: #{@card_expiry_period.inspect},"\
2133
+ " card_expiry: #{@card_expiry.inspect}, card_group_id: #{@card_group_id.inspect},"\
2134
+ " card_group_name: #{@card_group_name.inspect}, issuer_code: #{@issuer_code.inspect},"\
2135
+ " card_pan: #{@card_pan.inspect}, release_code: #{@release_code.inspect},"\
2136
+ " card_sequence_number: #{@card_sequence_number.inspect}, card_type: #{@card_type.inspect},"\
2137
+ " col_co_code: #{@col_co_code.inspect}, unit_discount_invoice_currency:"\
2138
+ " #{@unit_discount_invoice_currency.inspect}, col_co_exchange_rate:"\
2139
+ " #{@col_co_exchange_rate.inspect}, invoice_currency_symbol:"\
2140
+ " #{@invoice_currency_symbol.inspect}, correction_flag: #{@correction_flag.inspect},"\
2141
+ " crm_number: #{@crm_number.inspect}, customer_country: #{@customer_country.inspect},"\
2142
+ " customer_currency_code: #{@customer_currency_code.inspect}, customer_currency_symbol:"\
2143
+ " #{@customer_currency_symbol.inspect}, rebateon_net_amount_in_customer_currency:"\
2144
+ " #{@rebateon_net_amount_in_customer_currency.inspect},"\
2145
+ ' effective_discount_in_customer_currency:'\
2146
+ " #{@effective_discount_in_customer_currency.inspect},"\
2147
+ ' effective_unit_discount_in_customer_currency:'\
2148
+ " #{@effective_unit_discount_in_customer_currency.inspect}, unit_price_in_invoice_currency:"\
2149
+ " #{@unit_price_in_invoice_currency.inspect}, invoice_tax: #{@invoice_tax.inspect},"\
2150
+ " invoice_gross_amount: #{@invoice_gross_amount.inspect}, invoice_net_amount:"\
2151
+ " #{@invoice_net_amount.inspect}, va_ton_net_amount_in_customer_currency:"\
2152
+ " #{@va_ton_net_amount_in_customer_currency.inspect}, customer_retail_price_unit_gross:"\
2153
+ " #{@customer_retail_price_unit_gross.inspect}, customer_retail_value_total_gross:"\
2154
+ " #{@customer_retail_value_total_gross.inspect}, customer_retail_value_total_net:"\
2155
+ " #{@customer_retail_value_total_net.inspect}, transaction_type_description:"\
2156
+ " #{@transaction_type_description.inspect}, rebateon_net_amount_in_transaction_currency:"\
2157
+ " #{@rebateon_net_amount_in_transaction_currency.inspect},"\
2158
+ " effective_discount_in_trx_currency: #{@effective_discount_in_trx_currency.inspect},"\
2159
+ " del_co_to_col_co_exchange_rate: #{@del_co_to_col_co_exchange_rate.inspect}, cards:"\
2160
+ " #{@cards.inspect}, unit_discount_transaction_currency:"\
2161
+ " #{@unit_discount_transaction_currency.inspect}, transaction_gross_amount:"\
2162
+ " #{@transaction_gross_amount.inspect}, transaction_net_amount:"\
2163
+ " #{@transaction_net_amount.inspect}, transaction_tax: #{@transaction_tax.inspect},"\
2164
+ " va_ton_net_amount: #{@va_ton_net_amount.inspect}, delco_list_price_unit_net:"\
2165
+ " #{@delco_list_price_unit_net.inspect}, delco_retail_price_unit_gross:"\
2166
+ " #{@delco_retail_price_unit_gross.inspect}, unit_price_in_transaction_currency:"\
2167
+ " #{@unit_price_in_transaction_currency.inspect}, delco_retail_price_unit_net:"\
2168
+ " #{@delco_retail_price_unit_net.inspect}, delco_retail_value_total_gross:"\
2169
+ " #{@delco_retail_value_total_gross.inspect}, delco_retail_value_total_net:"\
2170
+ " #{@delco_retail_value_total_net.inspect}, transaction_currency_symbol:"\
2171
+ " #{@transaction_currency_symbol.inspect}, discount_type: #{@discount_type.inspect},"\
2172
+ " dispute_status: #{@dispute_status.inspect}, is_shell_site: #{@is_shell_site.inspect},"\
2173
+ " fleet_id_input: #{@fleet_id_input.inspect}, incoming_product_code:"\
2174
+ " #{@incoming_product_code.inspect}, posting_date: #{@posting_date.inspect}, posting_time:"\
2175
+ " #{@posting_time.inspect}, product_code: #{@product_code.inspect}, product_name:"\
2176
+ " #{@product_name.inspect}, product_group_id: #{@product_group_id.inspect},"\
2177
+ " incoming_currency_code: #{@incoming_currency_code.inspect}, incoming_site_description:"\
2178
+ " #{@incoming_site_description.inspect}, location: #{@location.inspect}, site_name:"\
2179
+ " #{@site_name.inspect}, site_code: #{@site_code.inspect}, incoming_site_number:"\
2180
+ " #{@incoming_site_number.inspect}, invoice_currency_code:"\
2181
+ " #{@invoice_currency_code.inspect}, invoice_date: #{@invoice_date.inspect}, invoice_number:"\
2182
+ " #{@invoice_number.inspect}, fuel_product: #{@fuel_product.inspect}, vat_applicable:"\
2183
+ " #{@vat_applicable.inspect}, payer_name: #{@payer_name.inspect}, payer_number:"\
2184
+ " #{@payer_number.inspect}, parent_customer_number: #{@parent_customer_number.inspect},"\
2185
+ " payer_group: #{@payer_group.inspect}, payer_group_name: #{@payer_group_name.inspect},"\
2186
+ " check_digit: #{@check_digit.inspect}, net_invoice_indicator:"\
2187
+ " #{@net_invoice_indicator.inspect}, delco_code: #{@delco_code.inspect}, network_code:"\
2188
+ " #{@network_code.inspect}, purchased_in_country: #{@purchased_in_country.inspect},"\
2189
+ " site_country: #{@site_country.inspect}, vat_country: #{@vat_country.inspect}, delco_name:"\
2190
+ " #{@delco_name.inspect}, network: #{@network.inspect}, odometer_input:"\
2191
+ " #{@odometer_input.inspect}, original_sales_item_id: #{@original_sales_item_id.inspect},"\
2192
+ " fleet_id_description: #{@fleet_id_description.inspect}, parent_customer_id:"\
2193
+ " #{@parent_customer_id.inspect}, pin_indicator: #{@pin_indicator.inspect},"\
2194
+ " product_group_name: #{@product_group_name.inspect}, purchased_in_country_code:"\
2195
+ " #{@purchased_in_country_code.inspect}, quantity: #{@quantity.inspect}, rebate_rate:"\
2196
+ " #{@rebate_rate.inspect}, receipt_number: #{@receipt_number.inspect}, refund_flag:"\
2197
+ " #{@refund_flag.inspect}, site_group_id: #{@site_group_id.inspect}, site_group_name:"\
2198
+ " #{@site_group_name.inspect}, latitude: #{@latitude.inspect}, longitude:"\
2199
+ " #{@longitude.inspect}, del_co_exchange_rate: #{@del_co_exchange_rate.inspect},"\
2200
+ " euro_rebate_amount: #{@euro_rebate_amount.inspect}, net_euro_amount:"\
2201
+ " #{@net_euro_amount.inspect}, euro_vat_amount: #{@euro_vat_amount.inspect},"\
2202
+ " parent_customer_name: #{@parent_customer_name.inspect}, is_invoiced:"\
2203
+ " #{@is_invoiced.inspect}, transaction_currency_code: #{@transaction_currency_code.inspect},"\
2204
+ " credit_debit_code: #{@credit_debit_code.inspect}, transaction_date:"\
2205
+ " #{@transaction_date.inspect}, transaction_time: #{@transaction_time.inspect},"\
2206
+ " transaction_item_id: #{@transaction_item_id.inspect}, trn_identifier:"\
2207
+ " #{@trn_identifier.inspect}, type: #{@type.inspect}, transaction_line:"\
2208
+ " #{@transaction_line.inspect}, transaction_type: #{@transaction_type.inspect}, utc_offset:"\
2209
+ " #{@utc_offset.inspect}, vat_category: #{@vat_category.inspect}, vat_rate:"\
2210
+ " #{@vat_rate.inspect}, vehicle_registration: #{@vehicle_registration.inspect},"\
2211
+ " is_cancelled: #{@is_cancelled.inspect}, col_co_gross_amount:"\
2212
+ " #{@col_co_gross_amount.inspect}, col_co_net_amount: #{@col_co_net_amount.inspect},"\
2213
+ " col_co_vat_amount: #{@col_co_vat_amount.inspect}, original_currency_symbol:"\
2214
+ " #{@original_currency_symbol.inspect}, original_currency_code:"\
2215
+ " #{@original_currency_code.inspect}, original_vat_amount: #{@original_vat_amount.inspect},"\
2216
+ " emboss_text: #{@emboss_text.inspect}, original_exchange_rate:"\
2217
+ " #{@original_exchange_rate.inspect}, original_transaction_item_invoice_date:"\
2218
+ " #{@original_transaction_item_invoice_date.inspect}, fee_type_id: #{@fee_type_id.inspect},"\
2219
+ " line_item_description: #{@line_item_description.inspect}, fee_rule_description:"\
2220
+ " #{@fee_rule_description.inspect}, frequency: #{@frequency.inspect}, fee_rule_id:"\
2221
+ " #{@fee_rule_id.inspect}, system_entry_date: #{@system_entry_date.inspect},"\
2222
+ " system_entry_time: #{@system_entry_time.inspect}, is_manual: #{@is_manual.inspect},"\
2223
+ " original_transaction_item_id: #{@original_transaction_item_id.inspect},"\
2224
+ ' original_transaction_item_invoice_number:'\
2225
+ " #{@original_transaction_item_invoice_number.inspect},"\
2226
+ " original_transaction_item_invoice_id: #{@original_transaction_item_invoice_id.inspect},"\
2227
+ " payer_short_name: #{@payer_short_name.inspect}, reverse_charge:"\
2228
+ " #{@reverse_charge.inspect}, original_gross_amount: #{@original_gross_amount.inspect},"\
2229
+ " original_net_amount: #{@original_net_amount.inspect}, unit_of_measure:"\
2230
+ " #{@unit_of_measure.inspect}, road_type: #{@road_type.inspect}, customer_country_iso_code:"\
2231
+ " #{@customer_country_iso_code.inspect}, ev_operator: #{@ev_operator.inspect}, ev_serial_id:"\
2232
+ " #{@ev_serial_id.inspect}, ev_charge_point_serial: #{@ev_charge_point_serial.inspect},"\
2233
+ " ev_charge_point_connector_type: #{@ev_charge_point_connector_type.inspect},"\
2234
+ ' ev_charge_point_connector_type_description:'\
2235
+ " #{@ev_charge_point_connector_type_description.inspect}, ev_charge_duration:"\
2236
+ " #{@ev_charge_duration.inspect}, ev_charge_start_date: #{@ev_charge_start_date.inspect},"\
2237
+ " ev_charge_start_time: #{@ev_charge_start_time.inspect}, ev_charge_end_date:"\
2238
+ " #{@ev_charge_end_date.inspect}, ev_charge_end_time: #{@ev_charge_end_time.inspect},"\
2239
+ " hosting_collecting_company_number: #{@hosting_collecting_company_number.inspect},"\
2240
+ " transaction_id: #{@transaction_id.inspect}, fuel_only: #{@fuel_only.inspect}>"
2241
+ end
2021
2242
  end
2022
2243
  end
@@ -0,0 +1,116 @@
1
+ # shell_data_reporting_ap_is
2
+ #
3
+ # This file was automatically generated by
4
+ # APIMATIC v3.0 ( https://www.apimatic.io ).
5
+
6
+ module ShellDataReportingApIs
7
+ # PricedTransSummaryResp Model.
8
+ class PricedTransSummaryResp < BaseModel
9
+ SKIP = Object.new
10
+ private_constant :SKIP
11
+
12
+ # Unique identifier for the request. This will be played back in the
13
+ # response from the request.
14
+ # @return [String]
15
+ attr_accessor :request_id
16
+
17
+ # Status of the request
18
+ # @return [String]
19
+ attr_accessor :status
20
+
21
+ # Status of the request
22
+ # @return [Array[PricedTransSummaryResponseTransactionsSummaryItems]]
23
+ attr_accessor :data
24
+
25
+ # A list of Warning entity.
26
+ # This entity will hold the details of the scheduled System Outages of any
27
+ # dependent applications of this service.
28
+ # Note: If there is no scheduled outage information available, in the
29
+ # configuration in AMS, for this service, this parameter won’t be present in
30
+ # output.
31
+ # @return [Array[Warning]]
32
+ attr_accessor :warnings
33
+
34
+ # A mapping from model property names to API property names.
35
+ def self.names
36
+ @_hash = {} if @_hash.nil?
37
+ @_hash['request_id'] = 'RequestId'
38
+ @_hash['status'] = 'Status'
39
+ @_hash['data'] = 'Data'
40
+ @_hash['warnings'] = 'Warnings'
41
+ @_hash
42
+ end
43
+
44
+ # An array for optional fields
45
+ def self.optionals
46
+ %w[
47
+ request_id
48
+ status
49
+ data
50
+ warnings
51
+ ]
52
+ end
53
+
54
+ # An array for nullable fields
55
+ def self.nullables
56
+ []
57
+ end
58
+
59
+ def initialize(request_id = SKIP, status = SKIP, data = SKIP,
60
+ warnings = SKIP)
61
+ @request_id = request_id unless request_id == SKIP
62
+ @status = status unless status == SKIP
63
+ @data = data unless data == SKIP
64
+ @warnings = warnings unless warnings == SKIP
65
+ end
66
+
67
+ # Creates an instance of the object from a hash.
68
+ def self.from_hash(hash)
69
+ return nil unless hash
70
+
71
+ # Extract variables from the hash.
72
+ request_id = hash.key?('RequestId') ? hash['RequestId'] : SKIP
73
+ status = hash.key?('Status') ? hash['Status'] : SKIP
74
+ # Parameter is an array, so we need to iterate through it
75
+ data = nil
76
+ unless hash['Data'].nil?
77
+ data = []
78
+ hash['Data'].each do |structure|
79
+ data << (PricedTransSummaryResponseTransactionsSummaryItems.from_hash(structure) if structure)
80
+ end
81
+ end
82
+
83
+ data = SKIP unless hash.key?('Data')
84
+ # Parameter is an array, so we need to iterate through it
85
+ warnings = nil
86
+ unless hash['Warnings'].nil?
87
+ warnings = []
88
+ hash['Warnings'].each do |structure|
89
+ warnings << (Warning.from_hash(structure) if structure)
90
+ end
91
+ end
92
+
93
+ warnings = SKIP unless hash.key?('Warnings')
94
+
95
+ # Create object from extracted values.
96
+ PricedTransSummaryResp.new(request_id,
97
+ status,
98
+ data,
99
+ warnings)
100
+ end
101
+
102
+ # Provides a human-readable string representation of the object.
103
+ def to_s
104
+ class_name = self.class.name.split('::').last
105
+ "<#{class_name} request_id: #{@request_id}, status: #{@status}, data: #{@data}, warnings:"\
106
+ " #{@warnings}>"
107
+ end
108
+
109
+ # Provides a debugging-friendly string with detailed object information.
110
+ def inspect
111
+ class_name = self.class.name.split('::').last
112
+ "<#{class_name} request_id: #{@request_id.inspect}, status: #{@status.inspect}, data:"\
113
+ " #{@data.inspect}, warnings: #{@warnings.inspect}>"
114
+ end
115
+ end
116
+ end
@@ -1,7 +1,7 @@
1
1
  # shell_data_reporting_ap_is
2
2
  #
3
- # This file was automatically generated by APIMATIC v2.0
4
- # ( https://apimatic.io ).
3
+ # This file was automatically generated by
4
+ # APIMATIC v3.0 ( https://www.apimatic.io ).
5
5
 
6
6
  module ShellDataReportingApIs
7
7
  # PricedTransSummaryResponseTransactionsSummaryItems Model.
@@ -232,5 +232,33 @@ module ShellDataReportingApIs
232
232
  customer_retail_value_total_net,
233
233
  customer_retail_value_total_gross)
234
234
  end
235
+
236
+ # Provides a human-readable string representation of the object.
237
+ def to_s
238
+ class_name = self.class.name.split('::').last
239
+ "<#{class_name} product_id: #{@product_id}, product_code: #{@product_code}, product_name:"\
240
+ " #{@product_name}, product_group_id: #{@product_group_id}, product_group_name:"\
241
+ " #{@product_group_name}, site_group_id: #{@site_group_id}, site_group_name:"\
242
+ " #{@site_group_name}, total_fuel_quantity: #{@total_fuel_quantity}, total_net_amount:"\
243
+ " #{@total_net_amount}, total_gross_amount: #{@total_gross_amount}, invoice_currency_code:"\
244
+ " #{@invoice_currency_code}, invoice_currency_symbol: #{@invoice_currency_symbol},"\
245
+ " customer_retail_value_total_net: #{@customer_retail_value_total_net},"\
246
+ " customer_retail_value_total_gross: #{@customer_retail_value_total_gross}>"
247
+ end
248
+
249
+ # Provides a debugging-friendly string with detailed object information.
250
+ def inspect
251
+ class_name = self.class.name.split('::').last
252
+ "<#{class_name} product_id: #{@product_id.inspect}, product_code: #{@product_code.inspect},"\
253
+ " product_name: #{@product_name.inspect}, product_group_id: #{@product_group_id.inspect},"\
254
+ " product_group_name: #{@product_group_name.inspect}, site_group_id:"\
255
+ " #{@site_group_id.inspect}, site_group_name: #{@site_group_name.inspect},"\
256
+ " total_fuel_quantity: #{@total_fuel_quantity.inspect}, total_net_amount:"\
257
+ " #{@total_net_amount.inspect}, total_gross_amount: #{@total_gross_amount.inspect},"\
258
+ " invoice_currency_code: #{@invoice_currency_code.inspect}, invoice_currency_symbol:"\
259
+ " #{@invoice_currency_symbol.inspect}, customer_retail_value_total_net:"\
260
+ " #{@customer_retail_value_total_net.inspect}, customer_retail_value_total_gross:"\
261
+ " #{@customer_retail_value_total_gross.inspect}>"
262
+ end
235
263
  end
236
264
  end