get_around_owner 1.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 (154) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +9 -0
  3. data/README.md +303 -0
  4. data/Rakefile +10 -0
  5. data/docs/CarsApi.md +151 -0
  6. data/docs/CheckinsApi.md +71 -0
  7. data/docs/CheckoutsApi.md +71 -0
  8. data/docs/GetaroundCar.md +28 -0
  9. data/docs/GetaroundCarsIndexInner.md +18 -0
  10. data/docs/GetaroundCheckin.md +24 -0
  11. data/docs/GetaroundCheckinsIndexInner.md +18 -0
  12. data/docs/GetaroundCheckout.md +26 -0
  13. data/docs/GetaroundCreateMessagesRequest.md +18 -0
  14. data/docs/GetaroundCreateUnavailabilitiesRequest.md +22 -0
  15. data/docs/GetaroundDestroyUnavailabilityRequest.md +20 -0
  16. data/docs/GetaroundInvoice.md +34 -0
  17. data/docs/GetaroundInvoiceChargesInner.md +20 -0
  18. data/docs/GetaroundInvoicesIndexInner.md +18 -0
  19. data/docs/GetaroundMessage.md +26 -0
  20. data/docs/GetaroundMessagesSent.md +22 -0
  21. data/docs/GetaroundMessagesSentAllOfData.md +20 -0
  22. data/docs/GetaroundPayout.md +28 -0
  23. data/docs/GetaroundPayoutInvoicesInner.md +18 -0
  24. data/docs/GetaroundPayoutsIndexInner.md +18 -0
  25. data/docs/GetaroundReason.md +15 -0
  26. data/docs/GetaroundRental.md +32 -0
  27. data/docs/GetaroundRentalInvoicesIndexInner.md +18 -0
  28. data/docs/GetaroundRentalMessagesIndexInner.md +18 -0
  29. data/docs/GetaroundRentalsBooked.md +22 -0
  30. data/docs/GetaroundRentalsBookedAllOfData.md +18 -0
  31. data/docs/GetaroundRentalsCanceled.md +22 -0
  32. data/docs/GetaroundRentalsCarCheckedIn.md +22 -0
  33. data/docs/GetaroundRentalsCarCheckedOut.md +22 -0
  34. data/docs/GetaroundRentalsCarSwitched.md +22 -0
  35. data/docs/GetaroundRentalsIndexInner.md +18 -0
  36. data/docs/GetaroundRentalsTimesChanged.md +22 -0
  37. data/docs/GetaroundUnavailabilitiesCreated.md +22 -0
  38. data/docs/GetaroundUnavailabilitiesCreatedAllOfData.md +24 -0
  39. data/docs/GetaroundUnavailabilitiesDeleted.md +22 -0
  40. data/docs/GetaroundUnavailabilitiesDeletedAllOfData.md +22 -0
  41. data/docs/GetaroundUnavailability.md +24 -0
  42. data/docs/GetaroundUser.md +42 -0
  43. data/docs/GetaroundUsersUpdated.md +22 -0
  44. data/docs/GetaroundUsersUpdatedAllOfData.md +18 -0
  45. data/docs/GetaroundWebhook.md +22 -0
  46. data/docs/InvoicesApi.md +231 -0
  47. data/docs/MessagesApi.md +71 -0
  48. data/docs/PayoutsApi.md +155 -0
  49. data/docs/RentalsApi.md +263 -0
  50. data/docs/UnavailabilitiesApi.md +135 -0
  51. data/docs/UsersApi.md +71 -0
  52. data/get_around_owner.gemspec +26 -0
  53. data/git_push.sh +57 -0
  54. data/lib/get_around_owner/api/cars_api.rb +148 -0
  55. data/lib/get_around_owner/api/checkins_api.rb +82 -0
  56. data/lib/get_around_owner/api/checkouts_api.rb +82 -0
  57. data/lib/get_around_owner/api/invoices_api.rb +223 -0
  58. data/lib/get_around_owner/api/messages_api.rb +82 -0
  59. data/lib/get_around_owner/api/payouts_api.rb +162 -0
  60. data/lib/get_around_owner/api/rentals_api.rb +262 -0
  61. data/lib/get_around_owner/api/unavailabilities_api.rb +142 -0
  62. data/lib/get_around_owner/api/users_api.rb +82 -0
  63. data/lib/get_around_owner/api_client.rb +394 -0
  64. data/lib/get_around_owner/api_error.rb +58 -0
  65. data/lib/get_around_owner/configuration.rb +298 -0
  66. data/lib/get_around_owner/models/getaround_car.rb +308 -0
  67. data/lib/get_around_owner/models/getaround_cars_index_inner.rb +223 -0
  68. data/lib/get_around_owner/models/getaround_checkin.rb +279 -0
  69. data/lib/get_around_owner/models/getaround_checkins_index_inner.rb +222 -0
  70. data/lib/get_around_owner/models/getaround_checkout.rb +298 -0
  71. data/lib/get_around_owner/models/getaround_create_messages_request.rb +222 -0
  72. data/lib/get_around_owner/models/getaround_create_unavailabilities_request.rb +283 -0
  73. data/lib/get_around_owner/models/getaround_destroy_unavailability_request.rb +239 -0
  74. data/lib/get_around_owner/models/getaround_invoice.rb +396 -0
  75. data/lib/get_around_owner/models/getaround_invoice_charges_inner.rb +225 -0
  76. data/lib/get_around_owner/models/getaround_invoices_index_inner.rb +223 -0
  77. data/lib/get_around_owner/models/getaround_message.rb +291 -0
  78. data/lib/get_around_owner/models/getaround_messages_sent.rb +257 -0
  79. data/lib/get_around_owner/models/getaround_messages_sent_all_of_data.rb +225 -0
  80. data/lib/get_around_owner/models/getaround_payout.rb +347 -0
  81. data/lib/get_around_owner/models/getaround_payout_invoices_inner.rb +223 -0
  82. data/lib/get_around_owner/models/getaround_payouts_index_inner.rb +223 -0
  83. data/lib/get_around_owner/models/getaround_reason.rb +45 -0
  84. data/lib/get_around_owner/models/getaround_rental.rb +380 -0
  85. data/lib/get_around_owner/models/getaround_rental_invoices_index_inner.rb +223 -0
  86. data/lib/get_around_owner/models/getaround_rental_messages_index_inner.rb +223 -0
  87. data/lib/get_around_owner/models/getaround_rentals_booked.rb +257 -0
  88. data/lib/get_around_owner/models/getaround_rentals_booked_all_of_data.rb +215 -0
  89. data/lib/get_around_owner/models/getaround_rentals_canceled.rb +257 -0
  90. data/lib/get_around_owner/models/getaround_rentals_car_checked_in.rb +257 -0
  91. data/lib/get_around_owner/models/getaround_rentals_car_checked_out.rb +257 -0
  92. data/lib/get_around_owner/models/getaround_rentals_car_switched.rb +257 -0
  93. data/lib/get_around_owner/models/getaround_rentals_index_inner.rb +223 -0
  94. data/lib/get_around_owner/models/getaround_rentals_times_changed.rb +257 -0
  95. data/lib/get_around_owner/models/getaround_unavailabilities_created.rb +257 -0
  96. data/lib/get_around_owner/models/getaround_unavailabilities_created_all_of_data.rb +267 -0
  97. data/lib/get_around_owner/models/getaround_unavailabilities_deleted.rb +257 -0
  98. data/lib/get_around_owner/models/getaround_unavailabilities_deleted_all_of_data.rb +235 -0
  99. data/lib/get_around_owner/models/getaround_unavailability.rb +302 -0
  100. data/lib/get_around_owner/models/getaround_user.rb +420 -0
  101. data/lib/get_around_owner/models/getaround_users_updated.rb +257 -0
  102. data/lib/get_around_owner/models/getaround_users_updated_all_of_data.rb +215 -0
  103. data/lib/get_around_owner/models/getaround_webhook.rb +252 -0
  104. data/lib/get_around_owner/version.rb +15 -0
  105. data/lib/get_around_owner.rb +86 -0
  106. data/spec/api/cars_api_spec.rb +60 -0
  107. data/spec/api/checkins_api_spec.rb +62 -0
  108. data/spec/api/checkouts_api_spec.rb +62 -0
  109. data/spec/api/invoices_api_spec.rb +76 -0
  110. data/spec/api/messages_api_spec.rb +73 -0
  111. data/spec/api/payouts_api_spec.rb +62 -0
  112. data/spec/api/rentals_api_spec.rb +62 -0
  113. data/spec/api/unavailabilities_api_spec.rb +77 -0
  114. data/spec/api/users_api_spec.rb +47 -0
  115. data/spec/models/getaround_car_spec.rb +66 -0
  116. data/spec/models/getaround_cars_index_inner_spec.rb +36 -0
  117. data/spec/models/getaround_checkin_spec.rb +54 -0
  118. data/spec/models/getaround_checkins_index_inner_spec.rb +36 -0
  119. data/spec/models/getaround_checkout_spec.rb +60 -0
  120. data/spec/models/getaround_create_messages_request_spec.rb +36 -0
  121. data/spec/models/getaround_create_unavailabilities_request_spec.rb +52 -0
  122. data/spec/models/getaround_destroy_unavailability_request_spec.rb +42 -0
  123. data/spec/models/getaround_invoice_charges_inner_spec.rb +42 -0
  124. data/spec/models/getaround_invoice_spec.rb +92 -0
  125. data/spec/models/getaround_invoices_index_inner_spec.rb +36 -0
  126. data/spec/models/getaround_message_spec.rb +60 -0
  127. data/spec/models/getaround_messages_sent_all_of_data_spec.rb +42 -0
  128. data/spec/models/getaround_messages_sent_spec.rb +48 -0
  129. data/spec/models/getaround_payout_invoices_inner_spec.rb +36 -0
  130. data/spec/models/getaround_payout_spec.rb +70 -0
  131. data/spec/models/getaround_payouts_index_inner_spec.rb +36 -0
  132. data/spec/models/getaround_reason_spec.rb +30 -0
  133. data/spec/models/getaround_rental_invoices_index_inner_spec.rb +36 -0
  134. data/spec/models/getaround_rental_messages_index_inner_spec.rb +36 -0
  135. data/spec/models/getaround_rental_spec.rb +78 -0
  136. data/spec/models/getaround_rentals_booked_all_of_data_spec.rb +36 -0
  137. data/spec/models/getaround_rentals_booked_spec.rb +48 -0
  138. data/spec/models/getaround_rentals_canceled_spec.rb +48 -0
  139. data/spec/models/getaround_rentals_car_checked_in_spec.rb +48 -0
  140. data/spec/models/getaround_rentals_car_checked_out_spec.rb +48 -0
  141. data/spec/models/getaround_rentals_car_switched_spec.rb +48 -0
  142. data/spec/models/getaround_rentals_index_inner_spec.rb +36 -0
  143. data/spec/models/getaround_rentals_times_changed_spec.rb +48 -0
  144. data/spec/models/getaround_unavailabilities_created_all_of_data_spec.rb +54 -0
  145. data/spec/models/getaround_unavailabilities_created_spec.rb +48 -0
  146. data/spec/models/getaround_unavailabilities_deleted_all_of_data_spec.rb +48 -0
  147. data/spec/models/getaround_unavailabilities_deleted_spec.rb +48 -0
  148. data/spec/models/getaround_unavailability_spec.rb +58 -0
  149. data/spec/models/getaround_user_spec.rb +108 -0
  150. data/spec/models/getaround_users_updated_all_of_data_spec.rb +36 -0
  151. data/spec/models/getaround_users_updated_spec.rb +48 -0
  152. data/spec/models/getaround_webhook_spec.rb +48 -0
  153. data/spec/spec_helper.rb +111 -0
  154. metadata +283 -0
@@ -0,0 +1,111 @@
1
+ =begin
2
+ #Getaround Owner API
3
+
4
+ ## Quick Start The Owner API uses the JSON format, and must be accessed over a [secure connection](https://en.wikipedia.org/wiki/HTTPS). Let’s assume that the access token provided by your account manager is “TOKEN”. Here’s how to get the list of ids of all your invoices from the first week of August with a shell script: ```bash query=\"end_date=2018-08-08T00%3A00%3A00%2B00%3A00&start_date=2018-08-01T00%3A00%3A00%2B00%3A00\" curl -i \"https://api-eu.getaround.com/owner/v1/invoices?${query}\" \\ -H \"Authorization: Bearer TOKEN\" \\ -H \"Accept:application/json\" \\ -H \"Content-Type:application/json\" ``` And here’s how to get the invoice with the id 12345: ```bash curl -i \"https://api-eu.getaround.com/owner/v1/invoices/12345\" \\ -H \"Authorization: Bearer TOKEN\" \\ -H \"Accept: application/json\" \\ -H \"Content-Type: application/json\"\" ``` See the [endpoints section](#tag/Invoices) of this guide for details about the response format. Dates in request params should follow the ISO 8601 standard. # Authentication All requests must be authenticated with a [bearer token header](https://tools.ietf.org/html/rfc6750#section-2.1). You token will be sent to you by your account manager. Unauthenticated requests will return a 401 status. # Pagination The page number and the number of items per page can be set with the “page” and “per_page” params. For example, this request will return the second page of invoices, and 50 invoices per page: `https://api-eu.getaround.com/owner/v1/invoices?page=2&per_page=50` Both of these params are optional. The default page size is 30 items. The Getaround Owner API follows the [RFC 8288 convention](https://datatracker.ietf.org/doc/html/rfc8288) of using the `Link` header to provide the `next` page URL. Please don't build the pagination URLs yourself. The `next` page will be missing when you are requesting the last available page. Here's an example response header from requesting the second page of invoices `https://api-eu.getaround.com/owner/v1/invoices?page=2&per_page=50` ``` Link: <https://api-eu.getaround.com/owner/v1/invoices?page=3&per_page=50>; rel=\"next\" ``` # Throttling policy and Date range limitation We have throttling policy that prevents you to perform more than 100 requests per min from the same IP. Also, there is a limitation on the size of the range of dates given in params in some requests. All requests that need start_date and end_date, do not accept a range bigger than 30 days. # Webhooks Getaround can send webhook events that notify your application when certain events happen on your account. This is especially useful to follow the lifecycle of rentals, tracking for example bookings or cancellations. ### Setup To set up an endpoint, you need to define a route on your server for receiving events, and then <a href=\"mailto:owner-api@getaround.com\">ask Getaround</a> to add this URL to your account. To acknowledge receipt of a event, your endpoint must: - Return a `2xx` HTTP status code. - Be a secure `https` endpoint with a valid SSL certificate. ### Testing Once Getaround has set up the endpoint, and it is properly configured as described above, a test `ping` event can be sent by clicking the button below: <form action=\"/docs/api/owner/fire_ping_webhook\" method=\"post\"><input type=\"submit\" value=\"Send Ping Event\"></form> You should receive the following JSON payload: ```json { \"data\": { \"ping\": \"pong\" }, \"type\": \"ping\", \"occurred_at\": \"2019-04-18T08:30:05Z\" } ``` ### Retries Webhook deliveries will be attempted for up to three days with an exponential back off. After that point the delivery will be abandoned. ### Verifying Signatures Getaround will also provide you with a secret token, which is used to create a hash signature with each payload. This hash signature is passed along with each request in the headers as `X-Drivy-Signature`. Suppose you have a basic server listening to webhooks that looks like this: ```ruby require 'sinatra' require 'json' post '/payload' do push = JSON.parse(params[:payload]) \"I got some JSON: \#{push.inspect}\" end ``` The goal is to compute a hash using your secret token, and ensure that the hash from Getaround matches. Getaround uses an HMAC hexdigest to compute the hash, so you could change your server to look a little like this: ```ruby post '/payload' do request.body.rewind payload_body = request.body.read verify_signature(payload_body) push = JSON.parse(params[:payload]) \"I got some JSON: \#{push.inspect}\" end def verify_signature(payload_body) signature = 'sha1=' + OpenSSL::HMAC.hexdigest(OpenSSL::Digest.new('sha1'), ENV['SECRET_TOKEN'], payload_body) return halt 500, \"Signatures didn't match!\" unless Rack::Utils.secure_compare(signature, request.env['HTTP_X_DRIVY_SIGNATURE']) end ``` Obviously, your language and server implementations may differ from this code. There are a couple of important things to point out, however: No matter which implementation you use, the hash signature starts with `sha1=`, using the key of your secret token and your payload body. Using a plain `==` operator is not advised. A method like secure_compare performs a \"constant time\" string comparison, which renders it safe from certain timing attacks against regular equality operators. ### Best Practices - **Acknowledge events immediately**. If your webhook script performs complex logic, or makes network calls, it’s possible that the script would time out before Getaround sees its complete execution. Ideally, your webhook handler code (acknowledging receipt of an event by returning a `2xx` status code) is separate of any other logic you do for that event. - **Handle duplicate events**. Webhook endpoints might occasionally receive the same event more than once. We advise you to guard against duplicated event receipts by making your event processing idempotent. One way of doing this is logging the events you’ve processed, and then not processing already-logged events. - **Do not expect events in order**. Getaround does not guarantee delivery of events in the order in which they are generated. Your endpoint should therefore handle this accordingly. We do provide an `occurred_at` timestamp for each event, though, to help reconcile ordering.
5
+
6
+ The version of the OpenAPI document: 1.0.0
7
+ Contact: owner-api@getaround.com
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.6.0
10
+
11
+ =end
12
+
13
+ # load the gem
14
+ require 'get_around_owner'
15
+
16
+ # The following was generated by the `rspec --init` command. Conventionally, all
17
+ # specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
18
+ # The generated `.rspec` file contains `--require spec_helper` which will cause
19
+ # this file to always be loaded, without a need to explicitly require it in any
20
+ # files.
21
+ #
22
+ # Given that it is always loaded, you are encouraged to keep this file as
23
+ # light-weight as possible. Requiring heavyweight dependencies from this file
24
+ # will add to the boot time of your test suite on EVERY test run, even for an
25
+ # individual file that may not need all of that loaded. Instead, consider making
26
+ # a separate helper file that requires the additional dependencies and performs
27
+ # the additional setup, and require it from the spec files that actually need
28
+ # it.
29
+ #
30
+ # The `.rspec` file also contains a few flags that are not defaults but that
31
+ # users commonly want.
32
+ #
33
+ # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
34
+ RSpec.configure do |config|
35
+ # rspec-expectations config goes here. You can use an alternate
36
+ # assertion/expectation library such as wrong or the stdlib/minitest
37
+ # assertions if you prefer.
38
+ config.expect_with :rspec do |expectations|
39
+ # This option will default to `true` in RSpec 4. It makes the `description`
40
+ # and `failure_message` of custom matchers include text for helper methods
41
+ # defined using `chain`, e.g.:
42
+ # be_bigger_than(2).and_smaller_than(4).description
43
+ # # => "be bigger than 2 and smaller than 4"
44
+ # ...rather than:
45
+ # # => "be bigger than 2"
46
+ expectations.include_chain_clauses_in_custom_matcher_descriptions = true
47
+ end
48
+
49
+ # rspec-mocks config goes here. You can use an alternate test double
50
+ # library (such as bogus or mocha) by changing the `mock_with` option here.
51
+ config.mock_with :rspec do |mocks|
52
+ # Prevents you from mocking or stubbing a method that does not exist on
53
+ # a real object. This is generally recommended, and will default to
54
+ # `true` in RSpec 4.
55
+ mocks.verify_partial_doubles = true
56
+ end
57
+
58
+ # The settings below are suggested to provide a good initial experience
59
+ # with RSpec, but feel free to customize to your heart's content.
60
+ =begin
61
+ # These two settings work together to allow you to limit a spec run
62
+ # to individual examples or groups you care about by tagging them with
63
+ # `:focus` metadata. When nothing is tagged with `:focus`, all examples
64
+ # get run.
65
+ config.filter_run :focus
66
+ config.run_all_when_everything_filtered = true
67
+
68
+ # Allows RSpec to persist some state between runs in order to support
69
+ # the `--only-failures` and `--next-failure` CLI options. We recommend
70
+ # you configure your source control system to ignore this file.
71
+ config.example_status_persistence_file_path = "spec/examples.txt"
72
+
73
+ # Limits the available syntax to the non-monkey patched syntax that is
74
+ # recommended. For more details, see:
75
+ # - http://rspec.info/blog/2012/06/rspecs-new-expectation-syntax/
76
+ # - http://www.teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
77
+ # - http://rspec.info/blog/2014/05/notable-changes-in-rspec-3/#zero-monkey-patching-mode
78
+ config.disable_monkey_patching!
79
+
80
+ # This setting enables warnings. It's recommended, but in some cases may
81
+ # be too noisy due to issues in dependencies.
82
+ config.warnings = true
83
+
84
+ # Many RSpec users commonly either run the entire suite or an individual
85
+ # file, and it's useful to allow more verbose output when running an
86
+ # individual spec file.
87
+ if config.files_to_run.one?
88
+ # Use the documentation formatter for detailed output,
89
+ # unless a formatter has already been configured
90
+ # (e.g. via a command-line flag).
91
+ config.default_formatter = 'doc'
92
+ end
93
+
94
+ # Print the 10 slowest examples and example groups at the
95
+ # end of the spec run, to help surface which specs are running
96
+ # particularly slow.
97
+ config.profile_examples = 10
98
+
99
+ # Run specs in random order to surface order dependencies. If you find an
100
+ # order dependency and want to debug it, you can fix the order by providing
101
+ # the seed, which is printed after each run.
102
+ # --seed 1234
103
+ config.order = :random
104
+
105
+ # Seed global randomization in this process using the `--seed` CLI option.
106
+ # Setting this allows you to use `--seed` to deterministically reproduce
107
+ # test failures related to randomization by passing the same `--seed` value
108
+ # as the one that triggered the failure.
109
+ Kernel.srand config.seed
110
+ =end
111
+ end
metadata ADDED
@@ -0,0 +1,283 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: get_around_owner
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - OpenAPI-Generator
8
+ - yann120
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2024-06-28 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: typhoeus
16
+ requirement: !ruby/object:Gem::Requirement
17
+ requirements:
18
+ - - "~>"
19
+ - !ruby/object:Gem::Version
20
+ version: '1.0'
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: 1.0.1
24
+ type: :runtime
25
+ prerelease: false
26
+ version_requirements: !ruby/object:Gem::Requirement
27
+ requirements:
28
+ - - "~>"
29
+ - !ruby/object:Gem::Version
30
+ version: '1.0'
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: 1.0.1
34
+ - !ruby/object:Gem::Dependency
35
+ name: rspec
36
+ requirement: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '3.6'
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ version: 3.6.0
44
+ type: :development
45
+ prerelease: false
46
+ version_requirements: !ruby/object:Gem::Requirement
47
+ requirements:
48
+ - - "~>"
49
+ - !ruby/object:Gem::Version
50
+ version: '3.6'
51
+ - - ">="
52
+ - !ruby/object:Gem::Version
53
+ version: 3.6.0
54
+ description: Getaround Owner API Wrapper
55
+ email:
56
+ executables: []
57
+ extensions: []
58
+ extra_rdoc_files: []
59
+ files:
60
+ - Gemfile
61
+ - README.md
62
+ - Rakefile
63
+ - docs/CarsApi.md
64
+ - docs/CheckinsApi.md
65
+ - docs/CheckoutsApi.md
66
+ - docs/GetaroundCar.md
67
+ - docs/GetaroundCarsIndexInner.md
68
+ - docs/GetaroundCheckin.md
69
+ - docs/GetaroundCheckinsIndexInner.md
70
+ - docs/GetaroundCheckout.md
71
+ - docs/GetaroundCreateMessagesRequest.md
72
+ - docs/GetaroundCreateUnavailabilitiesRequest.md
73
+ - docs/GetaroundDestroyUnavailabilityRequest.md
74
+ - docs/GetaroundInvoice.md
75
+ - docs/GetaroundInvoiceChargesInner.md
76
+ - docs/GetaroundInvoicesIndexInner.md
77
+ - docs/GetaroundMessage.md
78
+ - docs/GetaroundMessagesSent.md
79
+ - docs/GetaroundMessagesSentAllOfData.md
80
+ - docs/GetaroundPayout.md
81
+ - docs/GetaroundPayoutInvoicesInner.md
82
+ - docs/GetaroundPayoutsIndexInner.md
83
+ - docs/GetaroundReason.md
84
+ - docs/GetaroundRental.md
85
+ - docs/GetaroundRentalInvoicesIndexInner.md
86
+ - docs/GetaroundRentalMessagesIndexInner.md
87
+ - docs/GetaroundRentalsBooked.md
88
+ - docs/GetaroundRentalsBookedAllOfData.md
89
+ - docs/GetaroundRentalsCanceled.md
90
+ - docs/GetaroundRentalsCarCheckedIn.md
91
+ - docs/GetaroundRentalsCarCheckedOut.md
92
+ - docs/GetaroundRentalsCarSwitched.md
93
+ - docs/GetaroundRentalsIndexInner.md
94
+ - docs/GetaroundRentalsTimesChanged.md
95
+ - docs/GetaroundUnavailabilitiesCreated.md
96
+ - docs/GetaroundUnavailabilitiesCreatedAllOfData.md
97
+ - docs/GetaroundUnavailabilitiesDeleted.md
98
+ - docs/GetaroundUnavailabilitiesDeletedAllOfData.md
99
+ - docs/GetaroundUnavailability.md
100
+ - docs/GetaroundUser.md
101
+ - docs/GetaroundUsersUpdated.md
102
+ - docs/GetaroundUsersUpdatedAllOfData.md
103
+ - docs/GetaroundWebhook.md
104
+ - docs/InvoicesApi.md
105
+ - docs/MessagesApi.md
106
+ - docs/PayoutsApi.md
107
+ - docs/RentalsApi.md
108
+ - docs/UnavailabilitiesApi.md
109
+ - docs/UsersApi.md
110
+ - get_around_owner.gemspec
111
+ - git_push.sh
112
+ - lib/get_around_owner.rb
113
+ - lib/get_around_owner/api/cars_api.rb
114
+ - lib/get_around_owner/api/checkins_api.rb
115
+ - lib/get_around_owner/api/checkouts_api.rb
116
+ - lib/get_around_owner/api/invoices_api.rb
117
+ - lib/get_around_owner/api/messages_api.rb
118
+ - lib/get_around_owner/api/payouts_api.rb
119
+ - lib/get_around_owner/api/rentals_api.rb
120
+ - lib/get_around_owner/api/unavailabilities_api.rb
121
+ - lib/get_around_owner/api/users_api.rb
122
+ - lib/get_around_owner/api_client.rb
123
+ - lib/get_around_owner/api_error.rb
124
+ - lib/get_around_owner/configuration.rb
125
+ - lib/get_around_owner/models/getaround_car.rb
126
+ - lib/get_around_owner/models/getaround_cars_index_inner.rb
127
+ - lib/get_around_owner/models/getaround_checkin.rb
128
+ - lib/get_around_owner/models/getaround_checkins_index_inner.rb
129
+ - lib/get_around_owner/models/getaround_checkout.rb
130
+ - lib/get_around_owner/models/getaround_create_messages_request.rb
131
+ - lib/get_around_owner/models/getaround_create_unavailabilities_request.rb
132
+ - lib/get_around_owner/models/getaround_destroy_unavailability_request.rb
133
+ - lib/get_around_owner/models/getaround_invoice.rb
134
+ - lib/get_around_owner/models/getaround_invoice_charges_inner.rb
135
+ - lib/get_around_owner/models/getaround_invoices_index_inner.rb
136
+ - lib/get_around_owner/models/getaround_message.rb
137
+ - lib/get_around_owner/models/getaround_messages_sent.rb
138
+ - lib/get_around_owner/models/getaround_messages_sent_all_of_data.rb
139
+ - lib/get_around_owner/models/getaround_payout.rb
140
+ - lib/get_around_owner/models/getaround_payout_invoices_inner.rb
141
+ - lib/get_around_owner/models/getaround_payouts_index_inner.rb
142
+ - lib/get_around_owner/models/getaround_reason.rb
143
+ - lib/get_around_owner/models/getaround_rental.rb
144
+ - lib/get_around_owner/models/getaround_rental_invoices_index_inner.rb
145
+ - lib/get_around_owner/models/getaround_rental_messages_index_inner.rb
146
+ - lib/get_around_owner/models/getaround_rentals_booked.rb
147
+ - lib/get_around_owner/models/getaround_rentals_booked_all_of_data.rb
148
+ - lib/get_around_owner/models/getaround_rentals_canceled.rb
149
+ - lib/get_around_owner/models/getaround_rentals_car_checked_in.rb
150
+ - lib/get_around_owner/models/getaround_rentals_car_checked_out.rb
151
+ - lib/get_around_owner/models/getaround_rentals_car_switched.rb
152
+ - lib/get_around_owner/models/getaround_rentals_index_inner.rb
153
+ - lib/get_around_owner/models/getaround_rentals_times_changed.rb
154
+ - lib/get_around_owner/models/getaround_unavailabilities_created.rb
155
+ - lib/get_around_owner/models/getaround_unavailabilities_created_all_of_data.rb
156
+ - lib/get_around_owner/models/getaround_unavailabilities_deleted.rb
157
+ - lib/get_around_owner/models/getaround_unavailabilities_deleted_all_of_data.rb
158
+ - lib/get_around_owner/models/getaround_unavailability.rb
159
+ - lib/get_around_owner/models/getaround_user.rb
160
+ - lib/get_around_owner/models/getaround_users_updated.rb
161
+ - lib/get_around_owner/models/getaround_users_updated_all_of_data.rb
162
+ - lib/get_around_owner/models/getaround_webhook.rb
163
+ - lib/get_around_owner/version.rb
164
+ - spec/api/cars_api_spec.rb
165
+ - spec/api/checkins_api_spec.rb
166
+ - spec/api/checkouts_api_spec.rb
167
+ - spec/api/invoices_api_spec.rb
168
+ - spec/api/messages_api_spec.rb
169
+ - spec/api/payouts_api_spec.rb
170
+ - spec/api/rentals_api_spec.rb
171
+ - spec/api/unavailabilities_api_spec.rb
172
+ - spec/api/users_api_spec.rb
173
+ - spec/models/getaround_car_spec.rb
174
+ - spec/models/getaround_cars_index_inner_spec.rb
175
+ - spec/models/getaround_checkin_spec.rb
176
+ - spec/models/getaround_checkins_index_inner_spec.rb
177
+ - spec/models/getaround_checkout_spec.rb
178
+ - spec/models/getaround_create_messages_request_spec.rb
179
+ - spec/models/getaround_create_unavailabilities_request_spec.rb
180
+ - spec/models/getaround_destroy_unavailability_request_spec.rb
181
+ - spec/models/getaround_invoice_charges_inner_spec.rb
182
+ - spec/models/getaround_invoice_spec.rb
183
+ - spec/models/getaround_invoices_index_inner_spec.rb
184
+ - spec/models/getaround_message_spec.rb
185
+ - spec/models/getaround_messages_sent_all_of_data_spec.rb
186
+ - spec/models/getaround_messages_sent_spec.rb
187
+ - spec/models/getaround_payout_invoices_inner_spec.rb
188
+ - spec/models/getaround_payout_spec.rb
189
+ - spec/models/getaround_payouts_index_inner_spec.rb
190
+ - spec/models/getaround_reason_spec.rb
191
+ - spec/models/getaround_rental_invoices_index_inner_spec.rb
192
+ - spec/models/getaround_rental_messages_index_inner_spec.rb
193
+ - spec/models/getaround_rental_spec.rb
194
+ - spec/models/getaround_rentals_booked_all_of_data_spec.rb
195
+ - spec/models/getaround_rentals_booked_spec.rb
196
+ - spec/models/getaround_rentals_canceled_spec.rb
197
+ - spec/models/getaround_rentals_car_checked_in_spec.rb
198
+ - spec/models/getaround_rentals_car_checked_out_spec.rb
199
+ - spec/models/getaround_rentals_car_switched_spec.rb
200
+ - spec/models/getaround_rentals_index_inner_spec.rb
201
+ - spec/models/getaround_rentals_times_changed_spec.rb
202
+ - spec/models/getaround_unavailabilities_created_all_of_data_spec.rb
203
+ - spec/models/getaround_unavailabilities_created_spec.rb
204
+ - spec/models/getaround_unavailabilities_deleted_all_of_data_spec.rb
205
+ - spec/models/getaround_unavailabilities_deleted_spec.rb
206
+ - spec/models/getaround_unavailability_spec.rb
207
+ - spec/models/getaround_user_spec.rb
208
+ - spec/models/getaround_users_updated_all_of_data_spec.rb
209
+ - spec/models/getaround_users_updated_spec.rb
210
+ - spec/models/getaround_webhook_spec.rb
211
+ - spec/spec_helper.rb
212
+ homepage: https://openapi-generator.tech
213
+ licenses:
214
+ - Unlicense
215
+ metadata: {}
216
+ post_install_message:
217
+ rdoc_options: []
218
+ require_paths:
219
+ - lib
220
+ required_ruby_version: !ruby/object:Gem::Requirement
221
+ requirements:
222
+ - - ">="
223
+ - !ruby/object:Gem::Version
224
+ version: '2.7'
225
+ required_rubygems_version: !ruby/object:Gem::Requirement
226
+ requirements:
227
+ - - ">="
228
+ - !ruby/object:Gem::Version
229
+ version: '0'
230
+ requirements: []
231
+ rubygems_version: 3.5.3
232
+ signing_key:
233
+ specification_version: 4
234
+ summary: Getaround Owner API Ruby Gem
235
+ test_files:
236
+ - spec/api/cars_api_spec.rb
237
+ - spec/api/rentals_api_spec.rb
238
+ - spec/api/messages_api_spec.rb
239
+ - spec/api/invoices_api_spec.rb
240
+ - spec/api/checkins_api_spec.rb
241
+ - spec/api/payouts_api_spec.rb
242
+ - spec/api/unavailabilities_api_spec.rb
243
+ - spec/api/checkouts_api_spec.rb
244
+ - spec/api/users_api_spec.rb
245
+ - spec/models/getaround_rentals_canceled_spec.rb
246
+ - spec/models/getaround_invoice_charges_inner_spec.rb
247
+ - spec/models/getaround_rentals_car_checked_out_spec.rb
248
+ - spec/models/getaround_rental_messages_index_inner_spec.rb
249
+ - spec/models/getaround_users_updated_spec.rb
250
+ - spec/models/getaround_messages_sent_spec.rb
251
+ - spec/models/getaround_unavailabilities_deleted_all_of_data_spec.rb
252
+ - spec/models/getaround_payout_spec.rb
253
+ - spec/models/getaround_checkins_index_inner_spec.rb
254
+ - spec/models/getaround_unavailability_spec.rb
255
+ - spec/models/getaround_invoice_spec.rb
256
+ - spec/models/getaround_message_spec.rb
257
+ - spec/models/getaround_create_messages_request_spec.rb
258
+ - spec/models/getaround_checkout_spec.rb
259
+ - spec/models/getaround_checkin_spec.rb
260
+ - spec/models/getaround_users_updated_all_of_data_spec.rb
261
+ - spec/models/getaround_reason_spec.rb
262
+ - spec/models/getaround_unavailabilities_created_all_of_data_spec.rb
263
+ - spec/models/getaround_invoices_index_inner_spec.rb
264
+ - spec/models/getaround_cars_index_inner_spec.rb
265
+ - spec/models/getaround_rental_invoices_index_inner_spec.rb
266
+ - spec/models/getaround_car_spec.rb
267
+ - spec/models/getaround_rentals_booked_all_of_data_spec.rb
268
+ - spec/models/getaround_payout_invoices_inner_spec.rb
269
+ - spec/models/getaround_create_unavailabilities_request_spec.rb
270
+ - spec/models/getaround_payouts_index_inner_spec.rb
271
+ - spec/models/getaround_destroy_unavailability_request_spec.rb
272
+ - spec/models/getaround_rentals_car_checked_in_spec.rb
273
+ - spec/models/getaround_rentals_times_changed_spec.rb
274
+ - spec/models/getaround_user_spec.rb
275
+ - spec/models/getaround_unavailabilities_deleted_spec.rb
276
+ - spec/models/getaround_rental_spec.rb
277
+ - spec/models/getaround_webhook_spec.rb
278
+ - spec/models/getaround_rentals_booked_spec.rb
279
+ - spec/models/getaround_messages_sent_all_of_data_spec.rb
280
+ - spec/models/getaround_rentals_index_inner_spec.rb
281
+ - spec/models/getaround_rentals_car_switched_spec.rb
282
+ - spec/models/getaround_unavailabilities_created_spec.rb
283
+ - spec/spec_helper.rb