orb-billing 0.3.0 → 0.3.1

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 (310) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +33 -0
  3. data/README.md +5 -5
  4. data/lib/orb/errors.rb +9 -9
  5. data/lib/orb/internal/page.rb +3 -3
  6. data/lib/orb/internal/transport/base_client.rb +3 -3
  7. data/lib/orb/internal/type/base_model.rb +1 -9
  8. data/lib/orb/internal/type/boolean.rb +10 -11
  9. data/lib/orb/internal/type/enum.rb +10 -11
  10. data/lib/orb/internal/type/request_parameters.rb +2 -8
  11. data/lib/orb/internal/type/unknown.rb +10 -11
  12. data/lib/orb/internal/util.rb +20 -4
  13. data/lib/orb/models/coupon_create_params.rb +7 -7
  14. data/lib/orb/models/customer_create_params.rb +7 -7
  15. data/lib/orb/models/customer_update_by_external_id_params.rb +7 -9
  16. data/lib/orb/models/customer_update_params.rb +7 -7
  17. data/lib/orb/models/customers/cost_list_by_external_id_response.rb +2 -2
  18. data/lib/orb/models/customers/cost_list_response.rb +2 -2
  19. data/lib/orb/models/customers/credits/ledger_create_entry_by_external_id_response.rb +106 -107
  20. data/lib/orb/models/customers/credits/ledger_create_entry_response.rb +111 -119
  21. data/lib/orb/models/customers/credits/ledger_list_by_external_id_response.rb +110 -114
  22. data/lib/orb/models/customers/credits/ledger_list_response.rb +112 -124
  23. data/lib/orb/models/invoice.rb +50 -64
  24. data/lib/orb/models/invoice_fetch_upcoming_response.rb +51 -55
  25. data/lib/orb/models/invoice_line_item_create_response.rb +54 -57
  26. data/lib/orb/models/plan.rb +20 -23
  27. data/lib/orb/models/plan_create_params.rb +635 -670
  28. data/lib/orb/models/price.rb +1547 -1599
  29. data/lib/orb/models/subscription.rb +35 -41
  30. data/lib/orb/models/subscription_cancel_response.rb +33 -36
  31. data/lib/orb/models/subscription_change_apply_response.rb +31 -32
  32. data/lib/orb/models/subscription_change_cancel_response.rb +31 -31
  33. data/lib/orb/models/subscription_change_retrieve_response.rb +31 -31
  34. data/lib/orb/models/subscription_create_params.rb +1316 -1367
  35. data/lib/orb/models/subscription_create_response.rb +33 -36
  36. data/lib/orb/models/subscription_fetch_costs_response.rb +2 -2
  37. data/lib/orb/models/subscription_price_intervals_params.rb +748 -774
  38. data/lib/orb/models/subscription_price_intervals_response.rb +32 -35
  39. data/lib/orb/models/subscription_schedule_plan_change_params.rb +1299 -1354
  40. data/lib/orb/models/subscription_schedule_plan_change_response.rb +31 -33
  41. data/lib/orb/models/subscription_trigger_phase_response.rb +32 -35
  42. data/lib/orb/models/subscription_unschedule_cancellation_response.rb +31 -33
  43. data/lib/orb/models/subscription_unschedule_fixed_fee_quantity_updates_response.rb +31 -31
  44. data/lib/orb/models/subscription_unschedule_pending_plan_changes_response.rb +31 -31
  45. data/lib/orb/models/subscription_update_fixed_fee_quantity_response.rb +31 -33
  46. data/lib/orb/models/subscription_update_trial_response.rb +33 -36
  47. data/lib/orb/models.rb +220 -0
  48. data/lib/orb/request_options.rb +4 -5
  49. data/lib/orb/resources/coupons.rb +1 -1
  50. data/lib/orb/resources/customers/credits/ledger.rb +4 -4
  51. data/lib/orb/resources/customers.rb +3 -3
  52. data/lib/orb/resources/plans.rb +1 -1
  53. data/lib/orb/resources/prices/external_price_id.rb +2 -2
  54. data/lib/orb/resources/prices.rb +4 -4
  55. data/lib/orb/version.rb +1 -1
  56. data/rbi/{lib/orb → orb}/errors.rbi +1 -1
  57. data/rbi/{lib/orb → orb}/internal/transport/base_client.rbi +2 -2
  58. data/rbi/{lib/orb → orb}/internal/type/request_parameters.rbi +1 -1
  59. data/rbi/{lib/orb → orb}/internal/util.rbi +5 -1
  60. data/rbi/{lib/orb → orb}/models/coupon_create_params.rbi +9 -9
  61. data/rbi/{lib/orb → orb}/models/customer_create_params.rbi +9 -9
  62. data/rbi/{lib/orb → orb}/models/customer_update_by_external_id_params.rbi +9 -9
  63. data/rbi/{lib/orb → orb}/models/customer_update_params.rbi +9 -9
  64. data/rbi/{lib/orb → orb}/models/customers/cost_list_by_external_id_response.rbi +84 -84
  65. data/rbi/{lib/orb → orb}/models/customers/cost_list_response.rbi +84 -84
  66. data/rbi/{lib/orb/models/customers/credits/ledger_create_entry_response.rbi → orb/models/customers/credits/ledger_create_entry_by_external_id_response.rbi} +122 -114
  67. data/rbi/{lib/orb/models/customers/credits/ledger_create_entry_by_external_id_response.rbi → orb/models/customers/credits/ledger_create_entry_response.rbi} +114 -216
  68. data/rbi/{lib/orb/models/customers/credits/ledger_list_response.rbi → orb/models/customers/credits/ledger_list_by_external_id_response.rbi} +114 -114
  69. data/rbi/{lib/orb/models/customers/credits/ledger_list_by_external_id_response.rbi → orb/models/customers/credits/ledger_list_response.rbi} +114 -271
  70. data/rbi/{lib/orb → orb}/models/invoice.rbi +138 -156
  71. data/rbi/{lib/orb → orb}/models/invoice_fetch_upcoming_response.rbi +138 -150
  72. data/rbi/{lib/orb → orb}/models/invoice_line_item_create_response.rbi +138 -162
  73. data/rbi/{lib/orb → orb}/models/plan.rbi +105 -105
  74. data/rbi/{lib/orb → orb}/models/plan_create_params.rbi +973 -1734
  75. data/rbi/{lib/orb → orb}/models/price.rbi +1875 -2267
  76. data/rbi/{lib/orb → orb}/models/subscription.rbi +118 -118
  77. data/rbi/{lib/orb → orb}/models/subscription_cancel_response.rbi +118 -118
  78. data/rbi/{lib/orb → orb}/models/subscription_change_apply_response.rbi +118 -118
  79. data/rbi/{lib/orb → orb}/models/subscription_change_cancel_response.rbi +118 -118
  80. data/rbi/{lib/orb → orb}/models/subscription_change_retrieve_response.rbi +118 -118
  81. data/rbi/{lib/orb → orb}/models/subscription_create_params.rbi +1988 -2733
  82. data/rbi/{lib/orb → orb}/models/subscription_create_response.rbi +118 -118
  83. data/rbi/{lib/orb → orb}/models/subscription_fetch_costs_response.rbi +84 -84
  84. data/rbi/{lib/orb → orb}/models/subscription_price_intervals_params.rbi +1125 -1455
  85. data/rbi/{lib/orb → orb}/models/subscription_price_intervals_response.rbi +118 -118
  86. data/rbi/{lib/orb → orb}/models/subscription_schedule_plan_change_params.rbi +1988 -2210
  87. data/rbi/{lib/orb → orb}/models/subscription_schedule_plan_change_response.rbi +118 -118
  88. data/rbi/{lib/orb → orb}/models/subscription_trigger_phase_response.rbi +118 -118
  89. data/rbi/{lib/orb → orb}/models/subscription_unschedule_cancellation_response.rbi +118 -118
  90. data/rbi/{lib/orb → orb}/models/subscription_unschedule_fixed_fee_quantity_updates_response.rbi +118 -118
  91. data/rbi/{lib/orb → orb}/models/subscription_unschedule_pending_plan_changes_response.rbi +118 -118
  92. data/rbi/{lib/orb → orb}/models/subscription_update_fixed_fee_quantity_response.rbi +118 -118
  93. data/rbi/{lib/orb → orb}/models/subscription_update_trial_response.rbi +118 -118
  94. data/rbi/orb/models.rbi +220 -0
  95. data/rbi/{lib/orb → orb}/request_options.rbi +2 -0
  96. data/rbi/{lib/orb → orb}/resources/alerts.rbi +8 -14
  97. data/rbi/{lib/orb → orb}/resources/coupons/subscriptions.rbi +1 -1
  98. data/rbi/{lib/orb → orb}/resources/coupons.rbi +6 -18
  99. data/rbi/{lib/orb → orb}/resources/credit_notes.rbi +3 -9
  100. data/rbi/{lib/orb → orb}/resources/customers/balance_transactions.rbi +2 -2
  101. data/rbi/{lib/orb → orb}/resources/customers/costs.rbi +2 -2
  102. data/rbi/{lib/orb → orb}/resources/customers/credits/ledger.rbi +32 -32
  103. data/rbi/{lib/orb → orb}/resources/customers/credits/top_ups.rbi +6 -18
  104. data/rbi/{lib/orb → orb}/resources/customers/credits.rbi +2 -2
  105. data/rbi/{lib/orb → orb}/resources/customers.rbi +15 -45
  106. data/rbi/{lib/orb → orb}/resources/dimensional_price_groups/external_dimensional_price_group_id.rbi +1 -4
  107. data/rbi/{lib/orb → orb}/resources/dimensional_price_groups.rbi +3 -10
  108. data/rbi/{lib/orb → orb}/resources/events/backfills.rbi +5 -18
  109. data/rbi/{lib/orb → orb}/resources/events/volume.rbi +1 -1
  110. data/rbi/{lib/orb → orb}/resources/events.rbi +4 -10
  111. data/rbi/{lib/orb → orb}/resources/invoice_line_items.rbi +1 -1
  112. data/rbi/{lib/orb → orb}/resources/invoices.rbi +9 -34
  113. data/rbi/{lib/orb → orb}/resources/items.rbi +4 -17
  114. data/rbi/{lib/orb → orb}/resources/metrics.rbi +4 -10
  115. data/rbi/{lib/orb → orb}/resources/plans/external_plan_id.rbi +2 -8
  116. data/rbi/{lib/orb → orb}/resources/plans.rbi +29 -35
  117. data/rbi/orb/resources/prices/external_price_id.rbi +103 -0
  118. data/rbi/{lib/orb → orb}/resources/prices.rbi +117 -124
  119. data/rbi/{lib/orb → orb}/resources/subscription_changes.rbi +3 -9
  120. data/rbi/{lib/orb → orb}/resources/subscriptions.rbi +16 -32
  121. data/rbi/{lib/orb → orb}/resources/top_level.rbi +1 -4
  122. data/sig/orb/internal/util.rbs +2 -0
  123. data/sig/orb/models/coupon_create_params.rbs +9 -10
  124. data/sig/orb/models/customer_create_params.rbs +9 -10
  125. data/sig/orb/models/customer_update_by_external_id_params.rbs +9 -10
  126. data/sig/orb/models/customer_update_params.rbs +9 -10
  127. data/sig/orb/models/customers/credits/ledger_create_entry_by_external_id_response.rbs +113 -113
  128. data/sig/orb/models/customers/credits/ledger_create_entry_response.rbs +113 -113
  129. data/sig/orb/models/customers/credits/ledger_list_by_external_id_response.rbs +113 -113
  130. data/sig/orb/models/customers/credits/ledger_list_response.rbs +113 -113
  131. data/sig/orb/models/invoice.rbs +54 -54
  132. data/sig/orb/models/invoice_fetch_upcoming_response.rbs +54 -54
  133. data/sig/orb/models/invoice_line_item_create_response.rbs +54 -54
  134. data/sig/orb/models/plan.rbs +21 -21
  135. data/sig/orb/models/plan_create_params.rbs +653 -653
  136. data/sig/orb/models/price.rbs +1517 -1521
  137. data/sig/orb/models/subscription.rbs +34 -34
  138. data/sig/orb/models/subscription_cancel_response.rbs +34 -34
  139. data/sig/orb/models/subscription_change_apply_response.rbs +34 -34
  140. data/sig/orb/models/subscription_change_cancel_response.rbs +34 -34
  141. data/sig/orb/models/subscription_change_retrieve_response.rbs +34 -34
  142. data/sig/orb/models/subscription_create_params.rbs +1348 -1348
  143. data/sig/orb/models/subscription_create_response.rbs +34 -34
  144. data/sig/orb/models/subscription_price_intervals_params.rbs +767 -769
  145. data/sig/orb/models/subscription_price_intervals_response.rbs +34 -34
  146. data/sig/orb/models/subscription_schedule_plan_change_params.rbs +1348 -1348
  147. data/sig/orb/models/subscription_schedule_plan_change_response.rbs +34 -34
  148. data/sig/orb/models/subscription_trigger_phase_response.rbs +34 -34
  149. data/sig/orb/models/subscription_unschedule_cancellation_response.rbs +34 -34
  150. data/sig/orb/models/subscription_unschedule_fixed_fee_quantity_updates_response.rbs +34 -34
  151. data/sig/orb/models/subscription_unschedule_pending_plan_changes_response.rbs +34 -34
  152. data/sig/orb/models/subscription_update_fixed_fee_quantity_response.rbs +34 -34
  153. data/sig/orb/models/subscription_update_trial_response.rbs +34 -34
  154. data/sig/orb/models.rbs +215 -0
  155. metadata +226 -223
  156. data/rbi/lib/orb/resources/prices/external_price_id.rbi +0 -106
  157. data/rbi/{lib/orb → orb}/client.rbi +0 -0
  158. data/rbi/{lib/orb → orb}/file_part.rbi +0 -0
  159. data/rbi/{lib/orb → orb}/internal/page.rbi +0 -0
  160. data/rbi/{lib/orb → orb}/internal/transport/pooled_net_requester.rbi +0 -0
  161. data/rbi/{lib/orb → orb}/internal/type/array_of.rbi +0 -0
  162. data/rbi/{lib/orb → orb}/internal/type/base_model.rbi +0 -0
  163. data/rbi/{lib/orb → orb}/internal/type/base_page.rbi +0 -0
  164. data/rbi/{lib/orb → orb}/internal/type/boolean.rbi +0 -0
  165. data/rbi/{lib/orb → orb}/internal/type/converter.rbi +0 -0
  166. data/rbi/{lib/orb → orb}/internal/type/enum.rbi +0 -0
  167. data/rbi/{lib/orb → orb}/internal/type/file_input.rbi +0 -0
  168. data/rbi/{lib/orb → orb}/internal/type/hash_of.rbi +0 -0
  169. data/rbi/{lib/orb → orb}/internal/type/union.rbi +0 -0
  170. data/rbi/{lib/orb → orb}/internal/type/unknown.rbi +0 -0
  171. data/rbi/{lib/orb → orb}/internal.rbi +0 -0
  172. data/rbi/{lib/orb → orb}/models/alert.rbi +0 -0
  173. data/rbi/{lib/orb → orb}/models/alert_create_for_customer_params.rbi +0 -0
  174. data/rbi/{lib/orb → orb}/models/alert_create_for_external_customer_params.rbi +0 -0
  175. data/rbi/{lib/orb → orb}/models/alert_create_for_subscription_params.rbi +0 -0
  176. data/rbi/{lib/orb → orb}/models/alert_disable_params.rbi +0 -0
  177. data/rbi/{lib/orb → orb}/models/alert_enable_params.rbi +0 -0
  178. data/rbi/{lib/orb → orb}/models/alert_list_params.rbi +0 -0
  179. data/rbi/{lib/orb → orb}/models/alert_retrieve_params.rbi +0 -0
  180. data/rbi/{lib/orb → orb}/models/alert_update_params.rbi +0 -0
  181. data/rbi/{lib/orb → orb}/models/amount_discount.rbi +0 -0
  182. data/rbi/{lib/orb → orb}/models/billable_metric.rbi +0 -0
  183. data/rbi/{lib/orb → orb}/models/billing_cycle_relative_date.rbi +0 -0
  184. data/rbi/{lib/orb → orb}/models/coupon.rbi +0 -0
  185. data/rbi/{lib/orb → orb}/models/coupon_archive_params.rbi +0 -0
  186. data/rbi/{lib/orb → orb}/models/coupon_fetch_params.rbi +0 -0
  187. data/rbi/{lib/orb → orb}/models/coupon_list_params.rbi +0 -0
  188. data/rbi/{lib/orb → orb}/models/coupons/subscription_list_params.rbi +0 -0
  189. data/rbi/{lib/orb → orb}/models/credit_note.rbi +0 -0
  190. data/rbi/{lib/orb → orb}/models/credit_note_create_params.rbi +0 -0
  191. data/rbi/{lib/orb → orb}/models/credit_note_fetch_params.rbi +0 -0
  192. data/rbi/{lib/orb → orb}/models/credit_note_list_params.rbi +0 -0
  193. data/rbi/{lib/orb → orb}/models/customer.rbi +0 -0
  194. data/rbi/{lib/orb → orb}/models/customer_delete_params.rbi +0 -0
  195. data/rbi/{lib/orb → orb}/models/customer_fetch_by_external_id_params.rbi +0 -0
  196. data/rbi/{lib/orb → orb}/models/customer_fetch_params.rbi +0 -0
  197. data/rbi/{lib/orb → orb}/models/customer_list_params.rbi +0 -0
  198. data/rbi/{lib/orb → orb}/models/customer_sync_payment_methods_from_gateway_by_external_customer_id_params.rbi +0 -0
  199. data/rbi/{lib/orb → orb}/models/customer_sync_payment_methods_from_gateway_params.rbi +0 -0
  200. data/rbi/{lib/orb → orb}/models/customers/balance_transaction_create_params.rbi +0 -0
  201. data/rbi/{lib/orb → orb}/models/customers/balance_transaction_create_response.rbi +0 -0
  202. data/rbi/{lib/orb → orb}/models/customers/balance_transaction_list_params.rbi +0 -0
  203. data/rbi/{lib/orb → orb}/models/customers/balance_transaction_list_response.rbi +0 -0
  204. data/rbi/{lib/orb → orb}/models/customers/cost_list_by_external_id_params.rbi +0 -0
  205. data/rbi/{lib/orb → orb}/models/customers/cost_list_params.rbi +0 -0
  206. data/rbi/{lib/orb → orb}/models/customers/credit_list_by_external_id_params.rbi +0 -0
  207. data/rbi/{lib/orb → orb}/models/customers/credit_list_by_external_id_response.rbi +0 -0
  208. data/rbi/{lib/orb → orb}/models/customers/credit_list_params.rbi +0 -0
  209. data/rbi/{lib/orb → orb}/models/customers/credit_list_response.rbi +0 -0
  210. data/rbi/{lib/orb → orb}/models/customers/credits/ledger_create_entry_by_external_id_params.rbi +0 -0
  211. data/rbi/{lib/orb → orb}/models/customers/credits/ledger_create_entry_params.rbi +0 -0
  212. data/rbi/{lib/orb → orb}/models/customers/credits/ledger_list_by_external_id_params.rbi +0 -0
  213. data/rbi/{lib/orb → orb}/models/customers/credits/ledger_list_params.rbi +0 -0
  214. data/rbi/{lib/orb → orb}/models/customers/credits/top_up_create_by_external_id_params.rbi +0 -0
  215. data/rbi/{lib/orb → orb}/models/customers/credits/top_up_create_by_external_id_response.rbi +0 -0
  216. data/rbi/{lib/orb → orb}/models/customers/credits/top_up_create_params.rbi +0 -0
  217. data/rbi/{lib/orb → orb}/models/customers/credits/top_up_create_response.rbi +0 -0
  218. data/rbi/{lib/orb → orb}/models/customers/credits/top_up_delete_by_external_id_params.rbi +0 -0
  219. data/rbi/{lib/orb → orb}/models/customers/credits/top_up_delete_params.rbi +0 -0
  220. data/rbi/{lib/orb → orb}/models/customers/credits/top_up_list_by_external_id_params.rbi +0 -0
  221. data/rbi/{lib/orb → orb}/models/customers/credits/top_up_list_by_external_id_response.rbi +0 -0
  222. data/rbi/{lib/orb → orb}/models/customers/credits/top_up_list_params.rbi +0 -0
  223. data/rbi/{lib/orb → orb}/models/customers/credits/top_up_list_response.rbi +0 -0
  224. data/rbi/{lib/orb → orb}/models/dimensional_price_group.rbi +0 -0
  225. data/rbi/{lib/orb → orb}/models/dimensional_price_group_create_params.rbi +0 -0
  226. data/rbi/{lib/orb → orb}/models/dimensional_price_group_list_params.rbi +0 -0
  227. data/rbi/{lib/orb → orb}/models/dimensional_price_group_retrieve_params.rbi +0 -0
  228. data/rbi/{lib/orb → orb}/models/dimensional_price_groups/external_dimensional_price_group_id_retrieve_params.rbi +0 -0
  229. data/rbi/{lib/orb → orb}/models/dimensional_price_groups.rbi +0 -0
  230. data/rbi/{lib/orb → orb}/models/discount.rbi +0 -0
  231. data/rbi/{lib/orb → orb}/models/evaluate_price_group.rbi +0 -0
  232. data/rbi/{lib/orb → orb}/models/event_deprecate_params.rbi +0 -0
  233. data/rbi/{lib/orb → orb}/models/event_deprecate_response.rbi +0 -0
  234. data/rbi/{lib/orb → orb}/models/event_ingest_params.rbi +0 -0
  235. data/rbi/{lib/orb → orb}/models/event_ingest_response.rbi +0 -0
  236. data/rbi/{lib/orb → orb}/models/event_search_params.rbi +0 -0
  237. data/rbi/{lib/orb → orb}/models/event_search_response.rbi +0 -0
  238. data/rbi/{lib/orb → orb}/models/event_update_params.rbi +0 -0
  239. data/rbi/{lib/orb → orb}/models/event_update_response.rbi +0 -0
  240. data/rbi/{lib/orb → orb}/models/events/backfill_close_params.rbi +0 -0
  241. data/rbi/{lib/orb → orb}/models/events/backfill_close_response.rbi +0 -0
  242. data/rbi/{lib/orb → orb}/models/events/backfill_create_params.rbi +0 -0
  243. data/rbi/{lib/orb → orb}/models/events/backfill_create_response.rbi +0 -0
  244. data/rbi/{lib/orb → orb}/models/events/backfill_fetch_params.rbi +0 -0
  245. data/rbi/{lib/orb → orb}/models/events/backfill_fetch_response.rbi +0 -0
  246. data/rbi/{lib/orb → orb}/models/events/backfill_list_params.rbi +0 -0
  247. data/rbi/{lib/orb → orb}/models/events/backfill_list_response.rbi +0 -0
  248. data/rbi/{lib/orb → orb}/models/events/backfill_revert_params.rbi +0 -0
  249. data/rbi/{lib/orb → orb}/models/events/backfill_revert_response.rbi +0 -0
  250. data/rbi/{lib/orb → orb}/models/events/event_volumes.rbi +2 -2
  251. /data/rbi/{lib/orb → orb}/models/events/volume_list_params.rbi +0 -0
  252. /data/rbi/{lib/orb → orb}/models/invoice_create_params.rbi +0 -0
  253. /data/rbi/{lib/orb → orb}/models/invoice_fetch_params.rbi +0 -0
  254. /data/rbi/{lib/orb → orb}/models/invoice_fetch_upcoming_params.rbi +0 -0
  255. /data/rbi/{lib/orb → orb}/models/invoice_issue_params.rbi +0 -0
  256. /data/rbi/{lib/orb → orb}/models/invoice_level_discount.rbi +0 -0
  257. /data/rbi/{lib/orb → orb}/models/invoice_line_item_create_params.rbi +0 -0
  258. /data/rbi/{lib/orb → orb}/models/invoice_list_params.rbi +0 -0
  259. /data/rbi/{lib/orb → orb}/models/invoice_mark_paid_params.rbi +0 -0
  260. /data/rbi/{lib/orb → orb}/models/invoice_pay_params.rbi +0 -0
  261. /data/rbi/{lib/orb → orb}/models/invoice_update_params.rbi +0 -0
  262. /data/rbi/{lib/orb → orb}/models/invoice_void_params.rbi +0 -0
  263. /data/rbi/{lib/orb → orb}/models/item.rbi +0 -0
  264. /data/rbi/{lib/orb → orb}/models/item_create_params.rbi +0 -0
  265. /data/rbi/{lib/orb → orb}/models/item_fetch_params.rbi +0 -0
  266. /data/rbi/{lib/orb → orb}/models/item_list_params.rbi +0 -0
  267. /data/rbi/{lib/orb → orb}/models/item_update_params.rbi +0 -0
  268. /data/rbi/{lib/orb → orb}/models/metric_create_params.rbi +0 -0
  269. /data/rbi/{lib/orb → orb}/models/metric_fetch_params.rbi +0 -0
  270. /data/rbi/{lib/orb → orb}/models/metric_list_params.rbi +0 -0
  271. /data/rbi/{lib/orb → orb}/models/metric_update_params.rbi +0 -0
  272. /data/rbi/{lib/orb → orb}/models/pagination_metadata.rbi +0 -0
  273. /data/rbi/{lib/orb → orb}/models/percentage_discount.rbi +0 -0
  274. /data/rbi/{lib/orb → orb}/models/plan_fetch_params.rbi +0 -0
  275. /data/rbi/{lib/orb → orb}/models/plan_list_params.rbi +0 -0
  276. /data/rbi/{lib/orb → orb}/models/plan_update_params.rbi +0 -0
  277. /data/rbi/{lib/orb → orb}/models/plans/external_plan_id_fetch_params.rbi +0 -0
  278. /data/rbi/{lib/orb → orb}/models/plans/external_plan_id_update_params.rbi +0 -0
  279. /data/rbi/{lib/orb → orb}/models/price_create_params.rbi +0 -0
  280. /data/rbi/{lib/orb → orb}/models/price_evaluate_params.rbi +0 -0
  281. /data/rbi/{lib/orb → orb}/models/price_evaluate_response.rbi +0 -0
  282. /data/rbi/{lib/orb → orb}/models/price_fetch_params.rbi +0 -0
  283. /data/rbi/{lib/orb → orb}/models/price_list_params.rbi +0 -0
  284. /data/rbi/{lib/orb → orb}/models/price_update_params.rbi +0 -0
  285. /data/rbi/{lib/orb → orb}/models/prices/external_price_id_fetch_params.rbi +0 -0
  286. /data/rbi/{lib/orb → orb}/models/prices/external_price_id_update_params.rbi +0 -0
  287. /data/rbi/{lib/orb → orb}/models/subscription_cancel_params.rbi +0 -0
  288. /data/rbi/{lib/orb → orb}/models/subscription_change_apply_params.rbi +0 -0
  289. /data/rbi/{lib/orb → orb}/models/subscription_change_cancel_params.rbi +0 -0
  290. /data/rbi/{lib/orb → orb}/models/subscription_change_retrieve_params.rbi +0 -0
  291. /data/rbi/{lib/orb → orb}/models/subscription_fetch_costs_params.rbi +0 -0
  292. /data/rbi/{lib/orb → orb}/models/subscription_fetch_params.rbi +0 -0
  293. /data/rbi/{lib/orb → orb}/models/subscription_fetch_schedule_params.rbi +0 -0
  294. /data/rbi/{lib/orb → orb}/models/subscription_fetch_schedule_response.rbi +0 -0
  295. /data/rbi/{lib/orb → orb}/models/subscription_fetch_usage_params.rbi +0 -0
  296. /data/rbi/{lib/orb → orb}/models/subscription_list_params.rbi +0 -0
  297. /data/rbi/{lib/orb → orb}/models/subscription_trigger_phase_params.rbi +0 -0
  298. /data/rbi/{lib/orb → orb}/models/subscription_unschedule_cancellation_params.rbi +0 -0
  299. /data/rbi/{lib/orb → orb}/models/subscription_unschedule_fixed_fee_quantity_updates_params.rbi +0 -0
  300. /data/rbi/{lib/orb → orb}/models/subscription_unschedule_pending_plan_changes_params.rbi +0 -0
  301. /data/rbi/{lib/orb → orb}/models/subscription_update_fixed_fee_quantity_params.rbi +0 -0
  302. /data/rbi/{lib/orb → orb}/models/subscription_update_params.rbi +0 -0
  303. /data/rbi/{lib/orb → orb}/models/subscription_update_trial_params.rbi +0 -0
  304. /data/rbi/{lib/orb → orb}/models/subscription_usage.rbi +0 -0
  305. /data/rbi/{lib/orb → orb}/models/subscriptions.rbi +0 -0
  306. /data/rbi/{lib/orb → orb}/models/top_level_ping_params.rbi +0 -0
  307. /data/rbi/{lib/orb → orb}/models/top_level_ping_response.rbi +0 -0
  308. /data/rbi/{lib/orb → orb}/models/trial_discount.rbi +0 -0
  309. /data/rbi/{lib/orb → orb}/models/usage_discount.rbi +0 -0
  310. /data/rbi/{lib/orb → orb}/version.rbi +0 -0
@@ -13,27 +13,23 @@ module Orb
13
13
 
14
14
  discriminator :entry_type
15
15
 
16
- variant :increment,
17
- -> { Orb::Models::Customers::Credits::LedgerCreateEntryResponse::IncrementLedgerEntry }
16
+ variant :increment, -> { Orb::Models::Customers::Credits::LedgerCreateEntryResponse::Increment }
18
17
 
19
- variant :decrement,
20
- -> { Orb::Models::Customers::Credits::LedgerCreateEntryResponse::DecrementLedgerEntry }
18
+ variant :decrement, -> { Orb::Models::Customers::Credits::LedgerCreateEntryResponse::Decrement }
21
19
 
22
20
  variant :expiration_change,
23
- -> { Orb::Models::Customers::Credits::LedgerCreateEntryResponse::ExpirationChangeLedgerEntry }
21
+ -> { Orb::Models::Customers::Credits::LedgerCreateEntryResponse::ExpirationChange }
24
22
 
25
23
  variant :credit_block_expiry,
26
- -> { Orb::Models::Customers::Credits::LedgerCreateEntryResponse::CreditBlockExpiryLedgerEntry }
24
+ -> { Orb::Models::Customers::Credits::LedgerCreateEntryResponse::CreditBlockExpiry }
27
25
 
28
- variant :void, -> { Orb::Models::Customers::Credits::LedgerCreateEntryResponse::VoidLedgerEntry }
26
+ variant :void, -> { Orb::Models::Customers::Credits::LedgerCreateEntryResponse::Void }
29
27
 
30
- variant :void_initiated,
31
- -> { Orb::Models::Customers::Credits::LedgerCreateEntryResponse::VoidInitiatedLedgerEntry }
28
+ variant :void_initiated, -> { Orb::Models::Customers::Credits::LedgerCreateEntryResponse::VoidInitiated }
32
29
 
33
- variant :amendment,
34
- -> { Orb::Models::Customers::Credits::LedgerCreateEntryResponse::AmendmentLedgerEntry }
30
+ variant :amendment, -> { Orb::Models::Customers::Credits::LedgerCreateEntryResponse::Amendment }
35
31
 
36
- class IncrementLedgerEntry < Orb::Internal::Type::BaseModel
32
+ class Increment < Orb::Internal::Type::BaseModel
37
33
  # @!attribute id
38
34
  #
39
35
  # @return [String]
@@ -51,9 +47,9 @@ module Orb
51
47
 
52
48
  # @!attribute credit_block
53
49
  #
54
- # @return [Orb::Models::Customers::Credits::LedgerCreateEntryResponse::IncrementLedgerEntry::CreditBlock]
50
+ # @return [Orb::Models::Customers::Credits::LedgerCreateEntryResponse::Increment::CreditBlock]
55
51
  required :credit_block,
56
- -> { Orb::Models::Customers::Credits::LedgerCreateEntryResponse::IncrementLedgerEntry::CreditBlock }
52
+ -> { Orb::Models::Customers::Credits::LedgerCreateEntryResponse::Increment::CreditBlock }
57
53
 
58
54
  # @!attribute currency
59
55
  #
@@ -62,9 +58,8 @@ module Orb
62
58
 
63
59
  # @!attribute customer
64
60
  #
65
- # @return [Orb::Models::Customers::Credits::LedgerCreateEntryResponse::IncrementLedgerEntry::Customer]
66
- required :customer,
67
- -> { Orb::Models::Customers::Credits::LedgerCreateEntryResponse::IncrementLedgerEntry::Customer }
61
+ # @return [Orb::Models::Customers::Credits::LedgerCreateEntryResponse::Increment::Customer]
62
+ required :customer, -> { Orb::Models::Customers::Credits::LedgerCreateEntryResponse::Increment::Customer }
68
63
 
69
64
  # @!attribute description
70
65
  #
@@ -78,9 +73,9 @@ module Orb
78
73
 
79
74
  # @!attribute entry_status
80
75
  #
81
- # @return [Symbol, Orb::Models::Customers::Credits::LedgerCreateEntryResponse::IncrementLedgerEntry::EntryStatus]
76
+ # @return [Symbol, Orb::Models::Customers::Credits::LedgerCreateEntryResponse::Increment::EntryStatus]
82
77
  required :entry_status,
83
- enum: -> { Orb::Models::Customers::Credits::LedgerCreateEntryResponse::IncrementLedgerEntry::EntryStatus }
78
+ enum: -> { Orb::Models::Customers::Credits::LedgerCreateEntryResponse::Increment::EntryStatus }
84
79
 
85
80
  # @!attribute entry_type
86
81
  #
@@ -108,8 +103,8 @@ module Orb
108
103
 
109
104
  # @!method initialize(id:, amount:, created_at:, credit_block:, currency:, customer:, description:, ending_balance:, entry_status:, ledger_sequence_number:, metadata:, starting_balance:, entry_type: :increment)
110
105
  # Some parameter documentations has been truncated, see
111
- # {Orb::Models::Customers::Credits::LedgerCreateEntryResponse::IncrementLedgerEntry}
112
- # for more details.
106
+ # {Orb::Models::Customers::Credits::LedgerCreateEntryResponse::Increment} for more
107
+ # details.
113
108
  #
114
109
  # @param id [String]
115
110
  #
@@ -117,17 +112,17 @@ module Orb
117
112
  #
118
113
  # @param created_at [Time]
119
114
  #
120
- # @param credit_block [Orb::Models::Customers::Credits::LedgerCreateEntryResponse::IncrementLedgerEntry::CreditBlock]
115
+ # @param credit_block [Orb::Models::Customers::Credits::LedgerCreateEntryResponse::Increment::CreditBlock]
121
116
  #
122
117
  # @param currency [String]
123
118
  #
124
- # @param customer [Orb::Models::Customers::Credits::LedgerCreateEntryResponse::IncrementLedgerEntry::Customer]
119
+ # @param customer [Orb::Models::Customers::Credits::LedgerCreateEntryResponse::Increment::Customer]
125
120
  #
126
121
  # @param description [String, nil]
127
122
  #
128
123
  # @param ending_balance [Float]
129
124
  #
130
- # @param entry_status [Symbol, Orb::Models::Customers::Credits::LedgerCreateEntryResponse::IncrementLedgerEntry::EntryStatus]
125
+ # @param entry_status [Symbol, Orb::Models::Customers::Credits::LedgerCreateEntryResponse::Increment::EntryStatus]
131
126
  #
132
127
  # @param ledger_sequence_number [Integer]
133
128
  #
@@ -138,7 +133,7 @@ module Orb
138
133
  #
139
134
  # @param entry_type [Symbol, :increment]
140
135
 
141
- # @see Orb::Models::Customers::Credits::LedgerCreateEntryResponse::IncrementLedgerEntry#credit_block
136
+ # @see Orb::Models::Customers::Credits::LedgerCreateEntryResponse::Increment#credit_block
142
137
  class CreditBlock < Orb::Internal::Type::BaseModel
143
138
  # @!attribute id
144
139
  #
@@ -161,7 +156,7 @@ module Orb
161
156
  # @param per_unit_cost_basis [String, nil]
162
157
  end
163
158
 
164
- # @see Orb::Models::Customers::Credits::LedgerCreateEntryResponse::IncrementLedgerEntry#customer
159
+ # @see Orb::Models::Customers::Credits::LedgerCreateEntryResponse::Increment#customer
165
160
  class Customer < Orb::Internal::Type::BaseModel
166
161
  # @!attribute id
167
162
  #
@@ -178,7 +173,7 @@ module Orb
178
173
  # @param external_customer_id [String, nil]
179
174
  end
180
175
 
181
- # @see Orb::Models::Customers::Credits::LedgerCreateEntryResponse::IncrementLedgerEntry#entry_status
176
+ # @see Orb::Models::Customers::Credits::LedgerCreateEntryResponse::Increment#entry_status
182
177
  module EntryStatus
183
178
  extend Orb::Internal::Type::Enum
184
179
 
@@ -190,7 +185,7 @@ module Orb
190
185
  end
191
186
  end
192
187
 
193
- class DecrementLedgerEntry < Orb::Internal::Type::BaseModel
188
+ class Decrement < Orb::Internal::Type::BaseModel
194
189
  # @!attribute id
195
190
  #
196
191
  # @return [String]
@@ -208,9 +203,9 @@ module Orb
208
203
 
209
204
  # @!attribute credit_block
210
205
  #
211
- # @return [Orb::Models::Customers::Credits::LedgerCreateEntryResponse::DecrementLedgerEntry::CreditBlock]
206
+ # @return [Orb::Models::Customers::Credits::LedgerCreateEntryResponse::Decrement::CreditBlock]
212
207
  required :credit_block,
213
- -> { Orb::Models::Customers::Credits::LedgerCreateEntryResponse::DecrementLedgerEntry::CreditBlock }
208
+ -> { Orb::Models::Customers::Credits::LedgerCreateEntryResponse::Decrement::CreditBlock }
214
209
 
215
210
  # @!attribute currency
216
211
  #
@@ -219,9 +214,8 @@ module Orb
219
214
 
220
215
  # @!attribute customer
221
216
  #
222
- # @return [Orb::Models::Customers::Credits::LedgerCreateEntryResponse::DecrementLedgerEntry::Customer]
223
- required :customer,
224
- -> { Orb::Models::Customers::Credits::LedgerCreateEntryResponse::DecrementLedgerEntry::Customer }
217
+ # @return [Orb::Models::Customers::Credits::LedgerCreateEntryResponse::Decrement::Customer]
218
+ required :customer, -> { Orb::Models::Customers::Credits::LedgerCreateEntryResponse::Decrement::Customer }
225
219
 
226
220
  # @!attribute description
227
221
  #
@@ -235,9 +229,9 @@ module Orb
235
229
 
236
230
  # @!attribute entry_status
237
231
  #
238
- # @return [Symbol, Orb::Models::Customers::Credits::LedgerCreateEntryResponse::DecrementLedgerEntry::EntryStatus]
232
+ # @return [Symbol, Orb::Models::Customers::Credits::LedgerCreateEntryResponse::Decrement::EntryStatus]
239
233
  required :entry_status,
240
- enum: -> { Orb::Models::Customers::Credits::LedgerCreateEntryResponse::DecrementLedgerEntry::EntryStatus }
234
+ enum: -> { Orb::Models::Customers::Credits::LedgerCreateEntryResponse::Decrement::EntryStatus }
241
235
 
242
236
  # @!attribute entry_type
243
237
  #
@@ -280,8 +274,8 @@ module Orb
280
274
 
281
275
  # @!method initialize(id:, amount:, created_at:, credit_block:, currency:, customer:, description:, ending_balance:, entry_status:, ledger_sequence_number:, metadata:, starting_balance:, event_id: nil, invoice_id: nil, price_id: nil, entry_type: :decrement)
282
276
  # Some parameter documentations has been truncated, see
283
- # {Orb::Models::Customers::Credits::LedgerCreateEntryResponse::DecrementLedgerEntry}
284
- # for more details.
277
+ # {Orb::Models::Customers::Credits::LedgerCreateEntryResponse::Decrement} for more
278
+ # details.
285
279
  #
286
280
  # @param id [String]
287
281
  #
@@ -289,17 +283,17 @@ module Orb
289
283
  #
290
284
  # @param created_at [Time]
291
285
  #
292
- # @param credit_block [Orb::Models::Customers::Credits::LedgerCreateEntryResponse::DecrementLedgerEntry::CreditBlock]
286
+ # @param credit_block [Orb::Models::Customers::Credits::LedgerCreateEntryResponse::Decrement::CreditBlock]
293
287
  #
294
288
  # @param currency [String]
295
289
  #
296
- # @param customer [Orb::Models::Customers::Credits::LedgerCreateEntryResponse::DecrementLedgerEntry::Customer]
290
+ # @param customer [Orb::Models::Customers::Credits::LedgerCreateEntryResponse::Decrement::Customer]
297
291
  #
298
292
  # @param description [String, nil]
299
293
  #
300
294
  # @param ending_balance [Float]
301
295
  #
302
- # @param entry_status [Symbol, Orb::Models::Customers::Credits::LedgerCreateEntryResponse::DecrementLedgerEntry::EntryStatus]
296
+ # @param entry_status [Symbol, Orb::Models::Customers::Credits::LedgerCreateEntryResponse::Decrement::EntryStatus]
303
297
  #
304
298
  # @param ledger_sequence_number [Integer]
305
299
  #
@@ -316,7 +310,7 @@ module Orb
316
310
  #
317
311
  # @param entry_type [Symbol, :decrement]
318
312
 
319
- # @see Orb::Models::Customers::Credits::LedgerCreateEntryResponse::DecrementLedgerEntry#credit_block
313
+ # @see Orb::Models::Customers::Credits::LedgerCreateEntryResponse::Decrement#credit_block
320
314
  class CreditBlock < Orb::Internal::Type::BaseModel
321
315
  # @!attribute id
322
316
  #
@@ -339,7 +333,7 @@ module Orb
339
333
  # @param per_unit_cost_basis [String, nil]
340
334
  end
341
335
 
342
- # @see Orb::Models::Customers::Credits::LedgerCreateEntryResponse::DecrementLedgerEntry#customer
336
+ # @see Orb::Models::Customers::Credits::LedgerCreateEntryResponse::Decrement#customer
343
337
  class Customer < Orb::Internal::Type::BaseModel
344
338
  # @!attribute id
345
339
  #
@@ -356,7 +350,7 @@ module Orb
356
350
  # @param external_customer_id [String, nil]
357
351
  end
358
352
 
359
- # @see Orb::Models::Customers::Credits::LedgerCreateEntryResponse::DecrementLedgerEntry#entry_status
353
+ # @see Orb::Models::Customers::Credits::LedgerCreateEntryResponse::Decrement#entry_status
360
354
  module EntryStatus
361
355
  extend Orb::Internal::Type::Enum
362
356
 
@@ -368,7 +362,7 @@ module Orb
368
362
  end
369
363
  end
370
364
 
371
- class ExpirationChangeLedgerEntry < Orb::Internal::Type::BaseModel
365
+ class ExpirationChange < Orb::Internal::Type::BaseModel
372
366
  # @!attribute id
373
367
  #
374
368
  # @return [String]
@@ -386,9 +380,9 @@ module Orb
386
380
 
387
381
  # @!attribute credit_block
388
382
  #
389
- # @return [Orb::Models::Customers::Credits::LedgerCreateEntryResponse::ExpirationChangeLedgerEntry::CreditBlock]
383
+ # @return [Orb::Models::Customers::Credits::LedgerCreateEntryResponse::ExpirationChange::CreditBlock]
390
384
  required :credit_block,
391
- -> { Orb::Models::Customers::Credits::LedgerCreateEntryResponse::ExpirationChangeLedgerEntry::CreditBlock }
385
+ -> { Orb::Models::Customers::Credits::LedgerCreateEntryResponse::ExpirationChange::CreditBlock }
392
386
 
393
387
  # @!attribute currency
394
388
  #
@@ -397,9 +391,9 @@ module Orb
397
391
 
398
392
  # @!attribute customer
399
393
  #
400
- # @return [Orb::Models::Customers::Credits::LedgerCreateEntryResponse::ExpirationChangeLedgerEntry::Customer]
394
+ # @return [Orb::Models::Customers::Credits::LedgerCreateEntryResponse::ExpirationChange::Customer]
401
395
  required :customer,
402
- -> { Orb::Models::Customers::Credits::LedgerCreateEntryResponse::ExpirationChangeLedgerEntry::Customer }
396
+ -> { Orb::Models::Customers::Credits::LedgerCreateEntryResponse::ExpirationChange::Customer }
403
397
 
404
398
  # @!attribute description
405
399
  #
@@ -413,9 +407,9 @@ module Orb
413
407
 
414
408
  # @!attribute entry_status
415
409
  #
416
- # @return [Symbol, Orb::Models::Customers::Credits::LedgerCreateEntryResponse::ExpirationChangeLedgerEntry::EntryStatus]
410
+ # @return [Symbol, Orb::Models::Customers::Credits::LedgerCreateEntryResponse::ExpirationChange::EntryStatus]
417
411
  required :entry_status,
418
- enum: -> { Orb::Models::Customers::Credits::LedgerCreateEntryResponse::ExpirationChangeLedgerEntry::EntryStatus }
412
+ enum: -> { Orb::Models::Customers::Credits::LedgerCreateEntryResponse::ExpirationChange::EntryStatus }
419
413
 
420
414
  # @!attribute entry_type
421
415
  #
@@ -448,7 +442,7 @@ module Orb
448
442
 
449
443
  # @!method initialize(id:, amount:, created_at:, credit_block:, currency:, customer:, description:, ending_balance:, entry_status:, ledger_sequence_number:, metadata:, new_block_expiry_date:, starting_balance:, entry_type: :expiration_change)
450
444
  # Some parameter documentations has been truncated, see
451
- # {Orb::Models::Customers::Credits::LedgerCreateEntryResponse::ExpirationChangeLedgerEntry}
445
+ # {Orb::Models::Customers::Credits::LedgerCreateEntryResponse::ExpirationChange}
452
446
  # for more details.
453
447
  #
454
448
  # @param id [String]
@@ -457,17 +451,17 @@ module Orb
457
451
  #
458
452
  # @param created_at [Time]
459
453
  #
460
- # @param credit_block [Orb::Models::Customers::Credits::LedgerCreateEntryResponse::ExpirationChangeLedgerEntry::CreditBlock]
454
+ # @param credit_block [Orb::Models::Customers::Credits::LedgerCreateEntryResponse::ExpirationChange::CreditBlock]
461
455
  #
462
456
  # @param currency [String]
463
457
  #
464
- # @param customer [Orb::Models::Customers::Credits::LedgerCreateEntryResponse::ExpirationChangeLedgerEntry::Customer]
458
+ # @param customer [Orb::Models::Customers::Credits::LedgerCreateEntryResponse::ExpirationChange::Customer]
465
459
  #
466
460
  # @param description [String, nil]
467
461
  #
468
462
  # @param ending_balance [Float]
469
463
  #
470
- # @param entry_status [Symbol, Orb::Models::Customers::Credits::LedgerCreateEntryResponse::ExpirationChangeLedgerEntry::EntryStatus]
464
+ # @param entry_status [Symbol, Orb::Models::Customers::Credits::LedgerCreateEntryResponse::ExpirationChange::EntryStatus]
471
465
  #
472
466
  # @param ledger_sequence_number [Integer]
473
467
  #
@@ -480,7 +474,7 @@ module Orb
480
474
  #
481
475
  # @param entry_type [Symbol, :expiration_change]
482
476
 
483
- # @see Orb::Models::Customers::Credits::LedgerCreateEntryResponse::ExpirationChangeLedgerEntry#credit_block
477
+ # @see Orb::Models::Customers::Credits::LedgerCreateEntryResponse::ExpirationChange#credit_block
484
478
  class CreditBlock < Orb::Internal::Type::BaseModel
485
479
  # @!attribute id
486
480
  #
@@ -503,7 +497,7 @@ module Orb
503
497
  # @param per_unit_cost_basis [String, nil]
504
498
  end
505
499
 
506
- # @see Orb::Models::Customers::Credits::LedgerCreateEntryResponse::ExpirationChangeLedgerEntry#customer
500
+ # @see Orb::Models::Customers::Credits::LedgerCreateEntryResponse::ExpirationChange#customer
507
501
  class Customer < Orb::Internal::Type::BaseModel
508
502
  # @!attribute id
509
503
  #
@@ -520,7 +514,7 @@ module Orb
520
514
  # @param external_customer_id [String, nil]
521
515
  end
522
516
 
523
- # @see Orb::Models::Customers::Credits::LedgerCreateEntryResponse::ExpirationChangeLedgerEntry#entry_status
517
+ # @see Orb::Models::Customers::Credits::LedgerCreateEntryResponse::ExpirationChange#entry_status
524
518
  module EntryStatus
525
519
  extend Orb::Internal::Type::Enum
526
520
 
@@ -532,7 +526,7 @@ module Orb
532
526
  end
533
527
  end
534
528
 
535
- class CreditBlockExpiryLedgerEntry < Orb::Internal::Type::BaseModel
529
+ class CreditBlockExpiry < Orb::Internal::Type::BaseModel
536
530
  # @!attribute id
537
531
  #
538
532
  # @return [String]
@@ -550,9 +544,9 @@ module Orb
550
544
 
551
545
  # @!attribute credit_block
552
546
  #
553
- # @return [Orb::Models::Customers::Credits::LedgerCreateEntryResponse::CreditBlockExpiryLedgerEntry::CreditBlock]
547
+ # @return [Orb::Models::Customers::Credits::LedgerCreateEntryResponse::CreditBlockExpiry::CreditBlock]
554
548
  required :credit_block,
555
- -> { Orb::Models::Customers::Credits::LedgerCreateEntryResponse::CreditBlockExpiryLedgerEntry::CreditBlock }
549
+ -> { Orb::Models::Customers::Credits::LedgerCreateEntryResponse::CreditBlockExpiry::CreditBlock }
556
550
 
557
551
  # @!attribute currency
558
552
  #
@@ -561,9 +555,9 @@ module Orb
561
555
 
562
556
  # @!attribute customer
563
557
  #
564
- # @return [Orb::Models::Customers::Credits::LedgerCreateEntryResponse::CreditBlockExpiryLedgerEntry::Customer]
558
+ # @return [Orb::Models::Customers::Credits::LedgerCreateEntryResponse::CreditBlockExpiry::Customer]
565
559
  required :customer,
566
- -> { Orb::Models::Customers::Credits::LedgerCreateEntryResponse::CreditBlockExpiryLedgerEntry::Customer }
560
+ -> { Orb::Models::Customers::Credits::LedgerCreateEntryResponse::CreditBlockExpiry::Customer }
567
561
 
568
562
  # @!attribute description
569
563
  #
@@ -577,9 +571,9 @@ module Orb
577
571
 
578
572
  # @!attribute entry_status
579
573
  #
580
- # @return [Symbol, Orb::Models::Customers::Credits::LedgerCreateEntryResponse::CreditBlockExpiryLedgerEntry::EntryStatus]
574
+ # @return [Symbol, Orb::Models::Customers::Credits::LedgerCreateEntryResponse::CreditBlockExpiry::EntryStatus]
581
575
  required :entry_status,
582
- enum: -> { Orb::Models::Customers::Credits::LedgerCreateEntryResponse::CreditBlockExpiryLedgerEntry::EntryStatus }
576
+ enum: -> { Orb::Models::Customers::Credits::LedgerCreateEntryResponse::CreditBlockExpiry::EntryStatus }
583
577
 
584
578
  # @!attribute entry_type
585
579
  #
@@ -607,7 +601,7 @@ module Orb
607
601
 
608
602
  # @!method initialize(id:, amount:, created_at:, credit_block:, currency:, customer:, description:, ending_balance:, entry_status:, ledger_sequence_number:, metadata:, starting_balance:, entry_type: :credit_block_expiry)
609
603
  # Some parameter documentations has been truncated, see
610
- # {Orb::Models::Customers::Credits::LedgerCreateEntryResponse::CreditBlockExpiryLedgerEntry}
604
+ # {Orb::Models::Customers::Credits::LedgerCreateEntryResponse::CreditBlockExpiry}
611
605
  # for more details.
612
606
  #
613
607
  # @param id [String]
@@ -616,17 +610,17 @@ module Orb
616
610
  #
617
611
  # @param created_at [Time]
618
612
  #
619
- # @param credit_block [Orb::Models::Customers::Credits::LedgerCreateEntryResponse::CreditBlockExpiryLedgerEntry::CreditBlock]
613
+ # @param credit_block [Orb::Models::Customers::Credits::LedgerCreateEntryResponse::CreditBlockExpiry::CreditBlock]
620
614
  #
621
615
  # @param currency [String]
622
616
  #
623
- # @param customer [Orb::Models::Customers::Credits::LedgerCreateEntryResponse::CreditBlockExpiryLedgerEntry::Customer]
617
+ # @param customer [Orb::Models::Customers::Credits::LedgerCreateEntryResponse::CreditBlockExpiry::Customer]
624
618
  #
625
619
  # @param description [String, nil]
626
620
  #
627
621
  # @param ending_balance [Float]
628
622
  #
629
- # @param entry_status [Symbol, Orb::Models::Customers::Credits::LedgerCreateEntryResponse::CreditBlockExpiryLedgerEntry::EntryStatus]
623
+ # @param entry_status [Symbol, Orb::Models::Customers::Credits::LedgerCreateEntryResponse::CreditBlockExpiry::EntryStatus]
630
624
  #
631
625
  # @param ledger_sequence_number [Integer]
632
626
  #
@@ -637,7 +631,7 @@ module Orb
637
631
  #
638
632
  # @param entry_type [Symbol, :credit_block_expiry]
639
633
 
640
- # @see Orb::Models::Customers::Credits::LedgerCreateEntryResponse::CreditBlockExpiryLedgerEntry#credit_block
634
+ # @see Orb::Models::Customers::Credits::LedgerCreateEntryResponse::CreditBlockExpiry#credit_block
641
635
  class CreditBlock < Orb::Internal::Type::BaseModel
642
636
  # @!attribute id
643
637
  #
@@ -660,7 +654,7 @@ module Orb
660
654
  # @param per_unit_cost_basis [String, nil]
661
655
  end
662
656
 
663
- # @see Orb::Models::Customers::Credits::LedgerCreateEntryResponse::CreditBlockExpiryLedgerEntry#customer
657
+ # @see Orb::Models::Customers::Credits::LedgerCreateEntryResponse::CreditBlockExpiry#customer
664
658
  class Customer < Orb::Internal::Type::BaseModel
665
659
  # @!attribute id
666
660
  #
@@ -677,7 +671,7 @@ module Orb
677
671
  # @param external_customer_id [String, nil]
678
672
  end
679
673
 
680
- # @see Orb::Models::Customers::Credits::LedgerCreateEntryResponse::CreditBlockExpiryLedgerEntry#entry_status
674
+ # @see Orb::Models::Customers::Credits::LedgerCreateEntryResponse::CreditBlockExpiry#entry_status
681
675
  module EntryStatus
682
676
  extend Orb::Internal::Type::Enum
683
677
 
@@ -689,7 +683,7 @@ module Orb
689
683
  end
690
684
  end
691
685
 
692
- class VoidLedgerEntry < Orb::Internal::Type::BaseModel
686
+ class Void < Orb::Internal::Type::BaseModel
693
687
  # @!attribute id
694
688
  #
695
689
  # @return [String]
@@ -707,9 +701,9 @@ module Orb
707
701
 
708
702
  # @!attribute credit_block
709
703
  #
710
- # @return [Orb::Models::Customers::Credits::LedgerCreateEntryResponse::VoidLedgerEntry::CreditBlock]
704
+ # @return [Orb::Models::Customers::Credits::LedgerCreateEntryResponse::Void::CreditBlock]
711
705
  required :credit_block,
712
- -> { Orb::Models::Customers::Credits::LedgerCreateEntryResponse::VoidLedgerEntry::CreditBlock }
706
+ -> { Orb::Models::Customers::Credits::LedgerCreateEntryResponse::Void::CreditBlock }
713
707
 
714
708
  # @!attribute currency
715
709
  #
@@ -718,9 +712,8 @@ module Orb
718
712
 
719
713
  # @!attribute customer
720
714
  #
721
- # @return [Orb::Models::Customers::Credits::LedgerCreateEntryResponse::VoidLedgerEntry::Customer]
722
- required :customer,
723
- -> { Orb::Models::Customers::Credits::LedgerCreateEntryResponse::VoidLedgerEntry::Customer }
715
+ # @return [Orb::Models::Customers::Credits::LedgerCreateEntryResponse::Void::Customer]
716
+ required :customer, -> { Orb::Models::Customers::Credits::LedgerCreateEntryResponse::Void::Customer }
724
717
 
725
718
  # @!attribute description
726
719
  #
@@ -734,9 +727,9 @@ module Orb
734
727
 
735
728
  # @!attribute entry_status
736
729
  #
737
- # @return [Symbol, Orb::Models::Customers::Credits::LedgerCreateEntryResponse::VoidLedgerEntry::EntryStatus]
730
+ # @return [Symbol, Orb::Models::Customers::Credits::LedgerCreateEntryResponse::Void::EntryStatus]
738
731
  required :entry_status,
739
- enum: -> { Orb::Models::Customers::Credits::LedgerCreateEntryResponse::VoidLedgerEntry::EntryStatus }
732
+ enum: -> { Orb::Models::Customers::Credits::LedgerCreateEntryResponse::Void::EntryStatus }
740
733
 
741
734
  # @!attribute entry_type
742
735
  #
@@ -774,8 +767,8 @@ module Orb
774
767
 
775
768
  # @!method initialize(id:, amount:, created_at:, credit_block:, currency:, customer:, description:, ending_balance:, entry_status:, ledger_sequence_number:, metadata:, starting_balance:, void_amount:, void_reason:, entry_type: :void)
776
769
  # Some parameter documentations has been truncated, see
777
- # {Orb::Models::Customers::Credits::LedgerCreateEntryResponse::VoidLedgerEntry}
778
- # for more details.
770
+ # {Orb::Models::Customers::Credits::LedgerCreateEntryResponse::Void} for more
771
+ # details.
779
772
  #
780
773
  # @param id [String]
781
774
  #
@@ -783,17 +776,17 @@ module Orb
783
776
  #
784
777
  # @param created_at [Time]
785
778
  #
786
- # @param credit_block [Orb::Models::Customers::Credits::LedgerCreateEntryResponse::VoidLedgerEntry::CreditBlock]
779
+ # @param credit_block [Orb::Models::Customers::Credits::LedgerCreateEntryResponse::Void::CreditBlock]
787
780
  #
788
781
  # @param currency [String]
789
782
  #
790
- # @param customer [Orb::Models::Customers::Credits::LedgerCreateEntryResponse::VoidLedgerEntry::Customer]
783
+ # @param customer [Orb::Models::Customers::Credits::LedgerCreateEntryResponse::Void::Customer]
791
784
  #
792
785
  # @param description [String, nil]
793
786
  #
794
787
  # @param ending_balance [Float]
795
788
  #
796
- # @param entry_status [Symbol, Orb::Models::Customers::Credits::LedgerCreateEntryResponse::VoidLedgerEntry::EntryStatus]
789
+ # @param entry_status [Symbol, Orb::Models::Customers::Credits::LedgerCreateEntryResponse::Void::EntryStatus]
797
790
  #
798
791
  # @param ledger_sequence_number [Integer]
799
792
  #
@@ -808,7 +801,7 @@ module Orb
808
801
  #
809
802
  # @param entry_type [Symbol, :void]
810
803
 
811
- # @see Orb::Models::Customers::Credits::LedgerCreateEntryResponse::VoidLedgerEntry#credit_block
804
+ # @see Orb::Models::Customers::Credits::LedgerCreateEntryResponse::Void#credit_block
812
805
  class CreditBlock < Orb::Internal::Type::BaseModel
813
806
  # @!attribute id
814
807
  #
@@ -831,7 +824,7 @@ module Orb
831
824
  # @param per_unit_cost_basis [String, nil]
832
825
  end
833
826
 
834
- # @see Orb::Models::Customers::Credits::LedgerCreateEntryResponse::VoidLedgerEntry#customer
827
+ # @see Orb::Models::Customers::Credits::LedgerCreateEntryResponse::Void#customer
835
828
  class Customer < Orb::Internal::Type::BaseModel
836
829
  # @!attribute id
837
830
  #
@@ -848,7 +841,7 @@ module Orb
848
841
  # @param external_customer_id [String, nil]
849
842
  end
850
843
 
851
- # @see Orb::Models::Customers::Credits::LedgerCreateEntryResponse::VoidLedgerEntry#entry_status
844
+ # @see Orb::Models::Customers::Credits::LedgerCreateEntryResponse::Void#entry_status
852
845
  module EntryStatus
853
846
  extend Orb::Internal::Type::Enum
854
847
 
@@ -860,7 +853,7 @@ module Orb
860
853
  end
861
854
  end
862
855
 
863
- class VoidInitiatedLedgerEntry < Orb::Internal::Type::BaseModel
856
+ class VoidInitiated < Orb::Internal::Type::BaseModel
864
857
  # @!attribute id
865
858
  #
866
859
  # @return [String]
@@ -878,9 +871,9 @@ module Orb
878
871
 
879
872
  # @!attribute credit_block
880
873
  #
881
- # @return [Orb::Models::Customers::Credits::LedgerCreateEntryResponse::VoidInitiatedLedgerEntry::CreditBlock]
874
+ # @return [Orb::Models::Customers::Credits::LedgerCreateEntryResponse::VoidInitiated::CreditBlock]
882
875
  required :credit_block,
883
- -> { Orb::Models::Customers::Credits::LedgerCreateEntryResponse::VoidInitiatedLedgerEntry::CreditBlock }
876
+ -> { Orb::Models::Customers::Credits::LedgerCreateEntryResponse::VoidInitiated::CreditBlock }
884
877
 
885
878
  # @!attribute currency
886
879
  #
@@ -889,9 +882,9 @@ module Orb
889
882
 
890
883
  # @!attribute customer
891
884
  #
892
- # @return [Orb::Models::Customers::Credits::LedgerCreateEntryResponse::VoidInitiatedLedgerEntry::Customer]
885
+ # @return [Orb::Models::Customers::Credits::LedgerCreateEntryResponse::VoidInitiated::Customer]
893
886
  required :customer,
894
- -> { Orb::Models::Customers::Credits::LedgerCreateEntryResponse::VoidInitiatedLedgerEntry::Customer }
887
+ -> { Orb::Models::Customers::Credits::LedgerCreateEntryResponse::VoidInitiated::Customer }
895
888
 
896
889
  # @!attribute description
897
890
  #
@@ -905,9 +898,9 @@ module Orb
905
898
 
906
899
  # @!attribute entry_status
907
900
  #
908
- # @return [Symbol, Orb::Models::Customers::Credits::LedgerCreateEntryResponse::VoidInitiatedLedgerEntry::EntryStatus]
901
+ # @return [Symbol, Orb::Models::Customers::Credits::LedgerCreateEntryResponse::VoidInitiated::EntryStatus]
909
902
  required :entry_status,
910
- enum: -> { Orb::Models::Customers::Credits::LedgerCreateEntryResponse::VoidInitiatedLedgerEntry::EntryStatus }
903
+ enum: -> { Orb::Models::Customers::Credits::LedgerCreateEntryResponse::VoidInitiated::EntryStatus }
911
904
 
912
905
  # @!attribute entry_type
913
906
  #
@@ -950,8 +943,8 @@ module Orb
950
943
 
951
944
  # @!method initialize(id:, amount:, created_at:, credit_block:, currency:, customer:, description:, ending_balance:, entry_status:, ledger_sequence_number:, metadata:, new_block_expiry_date:, starting_balance:, void_amount:, void_reason:, entry_type: :void_initiated)
952
945
  # Some parameter documentations has been truncated, see
953
- # {Orb::Models::Customers::Credits::LedgerCreateEntryResponse::VoidInitiatedLedgerEntry}
954
- # for more details.
946
+ # {Orb::Models::Customers::Credits::LedgerCreateEntryResponse::VoidInitiated} for
947
+ # more details.
955
948
  #
956
949
  # @param id [String]
957
950
  #
@@ -959,17 +952,17 @@ module Orb
959
952
  #
960
953
  # @param created_at [Time]
961
954
  #
962
- # @param credit_block [Orb::Models::Customers::Credits::LedgerCreateEntryResponse::VoidInitiatedLedgerEntry::CreditBlock]
955
+ # @param credit_block [Orb::Models::Customers::Credits::LedgerCreateEntryResponse::VoidInitiated::CreditBlock]
963
956
  #
964
957
  # @param currency [String]
965
958
  #
966
- # @param customer [Orb::Models::Customers::Credits::LedgerCreateEntryResponse::VoidInitiatedLedgerEntry::Customer]
959
+ # @param customer [Orb::Models::Customers::Credits::LedgerCreateEntryResponse::VoidInitiated::Customer]
967
960
  #
968
961
  # @param description [String, nil]
969
962
  #
970
963
  # @param ending_balance [Float]
971
964
  #
972
- # @param entry_status [Symbol, Orb::Models::Customers::Credits::LedgerCreateEntryResponse::VoidInitiatedLedgerEntry::EntryStatus]
965
+ # @param entry_status [Symbol, Orb::Models::Customers::Credits::LedgerCreateEntryResponse::VoidInitiated::EntryStatus]
973
966
  #
974
967
  # @param ledger_sequence_number [Integer]
975
968
  #
@@ -986,7 +979,7 @@ module Orb
986
979
  #
987
980
  # @param entry_type [Symbol, :void_initiated]
988
981
 
989
- # @see Orb::Models::Customers::Credits::LedgerCreateEntryResponse::VoidInitiatedLedgerEntry#credit_block
982
+ # @see Orb::Models::Customers::Credits::LedgerCreateEntryResponse::VoidInitiated#credit_block
990
983
  class CreditBlock < Orb::Internal::Type::BaseModel
991
984
  # @!attribute id
992
985
  #
@@ -1009,7 +1002,7 @@ module Orb
1009
1002
  # @param per_unit_cost_basis [String, nil]
1010
1003
  end
1011
1004
 
1012
- # @see Orb::Models::Customers::Credits::LedgerCreateEntryResponse::VoidInitiatedLedgerEntry#customer
1005
+ # @see Orb::Models::Customers::Credits::LedgerCreateEntryResponse::VoidInitiated#customer
1013
1006
  class Customer < Orb::Internal::Type::BaseModel
1014
1007
  # @!attribute id
1015
1008
  #
@@ -1026,7 +1019,7 @@ module Orb
1026
1019
  # @param external_customer_id [String, nil]
1027
1020
  end
1028
1021
 
1029
- # @see Orb::Models::Customers::Credits::LedgerCreateEntryResponse::VoidInitiatedLedgerEntry#entry_status
1022
+ # @see Orb::Models::Customers::Credits::LedgerCreateEntryResponse::VoidInitiated#entry_status
1030
1023
  module EntryStatus
1031
1024
  extend Orb::Internal::Type::Enum
1032
1025
 
@@ -1038,7 +1031,7 @@ module Orb
1038
1031
  end
1039
1032
  end
1040
1033
 
1041
- class AmendmentLedgerEntry < Orb::Internal::Type::BaseModel
1034
+ class Amendment < Orb::Internal::Type::BaseModel
1042
1035
  # @!attribute id
1043
1036
  #
1044
1037
  # @return [String]
@@ -1056,9 +1049,9 @@ module Orb
1056
1049
 
1057
1050
  # @!attribute credit_block
1058
1051
  #
1059
- # @return [Orb::Models::Customers::Credits::LedgerCreateEntryResponse::AmendmentLedgerEntry::CreditBlock]
1052
+ # @return [Orb::Models::Customers::Credits::LedgerCreateEntryResponse::Amendment::CreditBlock]
1060
1053
  required :credit_block,
1061
- -> { Orb::Models::Customers::Credits::LedgerCreateEntryResponse::AmendmentLedgerEntry::CreditBlock }
1054
+ -> { Orb::Models::Customers::Credits::LedgerCreateEntryResponse::Amendment::CreditBlock }
1062
1055
 
1063
1056
  # @!attribute currency
1064
1057
  #
@@ -1067,9 +1060,8 @@ module Orb
1067
1060
 
1068
1061
  # @!attribute customer
1069
1062
  #
1070
- # @return [Orb::Models::Customers::Credits::LedgerCreateEntryResponse::AmendmentLedgerEntry::Customer]
1071
- required :customer,
1072
- -> { Orb::Models::Customers::Credits::LedgerCreateEntryResponse::AmendmentLedgerEntry::Customer }
1063
+ # @return [Orb::Models::Customers::Credits::LedgerCreateEntryResponse::Amendment::Customer]
1064
+ required :customer, -> { Orb::Models::Customers::Credits::LedgerCreateEntryResponse::Amendment::Customer }
1073
1065
 
1074
1066
  # @!attribute description
1075
1067
  #
@@ -1083,9 +1075,9 @@ module Orb
1083
1075
 
1084
1076
  # @!attribute entry_status
1085
1077
  #
1086
- # @return [Symbol, Orb::Models::Customers::Credits::LedgerCreateEntryResponse::AmendmentLedgerEntry::EntryStatus]
1078
+ # @return [Symbol, Orb::Models::Customers::Credits::LedgerCreateEntryResponse::Amendment::EntryStatus]
1087
1079
  required :entry_status,
1088
- enum: -> { Orb::Models::Customers::Credits::LedgerCreateEntryResponse::AmendmentLedgerEntry::EntryStatus }
1080
+ enum: -> { Orb::Models::Customers::Credits::LedgerCreateEntryResponse::Amendment::EntryStatus }
1089
1081
 
1090
1082
  # @!attribute entry_type
1091
1083
  #
@@ -1113,8 +1105,8 @@ module Orb
1113
1105
 
1114
1106
  # @!method initialize(id:, amount:, created_at:, credit_block:, currency:, customer:, description:, ending_balance:, entry_status:, ledger_sequence_number:, metadata:, starting_balance:, entry_type: :amendment)
1115
1107
  # Some parameter documentations has been truncated, see
1116
- # {Orb::Models::Customers::Credits::LedgerCreateEntryResponse::AmendmentLedgerEntry}
1117
- # for more details.
1108
+ # {Orb::Models::Customers::Credits::LedgerCreateEntryResponse::Amendment} for more
1109
+ # details.
1118
1110
  #
1119
1111
  # @param id [String]
1120
1112
  #
@@ -1122,17 +1114,17 @@ module Orb
1122
1114
  #
1123
1115
  # @param created_at [Time]
1124
1116
  #
1125
- # @param credit_block [Orb::Models::Customers::Credits::LedgerCreateEntryResponse::AmendmentLedgerEntry::CreditBlock]
1117
+ # @param credit_block [Orb::Models::Customers::Credits::LedgerCreateEntryResponse::Amendment::CreditBlock]
1126
1118
  #
1127
1119
  # @param currency [String]
1128
1120
  #
1129
- # @param customer [Orb::Models::Customers::Credits::LedgerCreateEntryResponse::AmendmentLedgerEntry::Customer]
1121
+ # @param customer [Orb::Models::Customers::Credits::LedgerCreateEntryResponse::Amendment::Customer]
1130
1122
  #
1131
1123
  # @param description [String, nil]
1132
1124
  #
1133
1125
  # @param ending_balance [Float]
1134
1126
  #
1135
- # @param entry_status [Symbol, Orb::Models::Customers::Credits::LedgerCreateEntryResponse::AmendmentLedgerEntry::EntryStatus]
1127
+ # @param entry_status [Symbol, Orb::Models::Customers::Credits::LedgerCreateEntryResponse::Amendment::EntryStatus]
1136
1128
  #
1137
1129
  # @param ledger_sequence_number [Integer]
1138
1130
  #
@@ -1143,7 +1135,7 @@ module Orb
1143
1135
  #
1144
1136
  # @param entry_type [Symbol, :amendment]
1145
1137
 
1146
- # @see Orb::Models::Customers::Credits::LedgerCreateEntryResponse::AmendmentLedgerEntry#credit_block
1138
+ # @see Orb::Models::Customers::Credits::LedgerCreateEntryResponse::Amendment#credit_block
1147
1139
  class CreditBlock < Orb::Internal::Type::BaseModel
1148
1140
  # @!attribute id
1149
1141
  #
@@ -1166,7 +1158,7 @@ module Orb
1166
1158
  # @param per_unit_cost_basis [String, nil]
1167
1159
  end
1168
1160
 
1169
- # @see Orb::Models::Customers::Credits::LedgerCreateEntryResponse::AmendmentLedgerEntry#customer
1161
+ # @see Orb::Models::Customers::Credits::LedgerCreateEntryResponse::Amendment#customer
1170
1162
  class Customer < Orb::Internal::Type::BaseModel
1171
1163
  # @!attribute id
1172
1164
  #
@@ -1183,7 +1175,7 @@ module Orb
1183
1175
  # @param external_customer_id [String, nil]
1184
1176
  end
1185
1177
 
1186
- # @see Orb::Models::Customers::Credits::LedgerCreateEntryResponse::AmendmentLedgerEntry#entry_status
1178
+ # @see Orb::Models::Customers::Credits::LedgerCreateEntryResponse::Amendment#entry_status
1187
1179
  module EntryStatus
1188
1180
  extend Orb::Internal::Type::Enum
1189
1181
 
@@ -1196,7 +1188,7 @@ module Orb
1196
1188
  end
1197
1189
 
1198
1190
  # @!method self.variants
1199
- # @return [Array(Orb::Models::Customers::Credits::LedgerCreateEntryResponse::IncrementLedgerEntry, Orb::Models::Customers::Credits::LedgerCreateEntryResponse::DecrementLedgerEntry, Orb::Models::Customers::Credits::LedgerCreateEntryResponse::ExpirationChangeLedgerEntry, Orb::Models::Customers::Credits::LedgerCreateEntryResponse::CreditBlockExpiryLedgerEntry, Orb::Models::Customers::Credits::LedgerCreateEntryResponse::VoidLedgerEntry, Orb::Models::Customers::Credits::LedgerCreateEntryResponse::VoidInitiatedLedgerEntry, Orb::Models::Customers::Credits::LedgerCreateEntryResponse::AmendmentLedgerEntry)]
1191
+ # @return [Array(Orb::Models::Customers::Credits::LedgerCreateEntryResponse::Increment, Orb::Models::Customers::Credits::LedgerCreateEntryResponse::Decrement, Orb::Models::Customers::Credits::LedgerCreateEntryResponse::ExpirationChange, Orb::Models::Customers::Credits::LedgerCreateEntryResponse::CreditBlockExpiry, Orb::Models::Customers::Credits::LedgerCreateEntryResponse::Void, Orb::Models::Customers::Credits::LedgerCreateEntryResponse::VoidInitiated, Orb::Models::Customers::Credits::LedgerCreateEntryResponse::Amendment)]
1200
1192
  end
1201
1193
  end
1202
1194
  end