voucherify 5.0.1 → 7.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2894) hide show
  1. checksums.yaml +4 -4
  2. data/DEPRECATED_CHANGELOG.md +35 -0
  3. data/Dockerfile +1 -1
  4. data/ENDPOINTS-COVERAGE.md +307 -824
  5. data/EXAMPLES.md +3 -3
  6. data/Gemfile.lock +9 -9
  7. data/README.md +948 -306
  8. data/__tests__/lib/campaigns.rb +27 -7
  9. data/__tests__/lib/config.rb +9 -4
  10. data/__tests__/lib/customers.rb +1 -1
  11. data/__tests__/lib/loyalties.rb +32 -0
  12. data/__tests__/lib/order.rb +67 -0
  13. data/__tests__/lib/stackables.rb +30 -6
  14. data/__tests__/lib/utils.rb +4 -0
  15. data/__tests__/lib/voucherify_data.rb +9 -0
  16. data/__tests__/spec/01_products_spec.rb +132 -0
  17. data/__tests__/spec/02_campaigns_spec.rb +133 -0
  18. data/__tests__/spec/03_customers_spec.rb +39 -0
  19. data/__tests__/spec/04_publications_spec.rb +31 -0
  20. data/__tests__/spec/05_qualifications_spec.rb +42 -0
  21. data/__tests__/spec/06_validations_spec.rb +140 -0
  22. data/__tests__/spec/07_vouchers_spec.rb +59 -0
  23. data/__tests__/spec/08_events_spec.rb +23 -0
  24. data/__tests__/spec/09_redemptions_spec.rb +47 -0
  25. data/__tests__/spec/10_orders_spec.rb +61 -0
  26. data/__tests__/spec/11_loyalties_spec.rb +40 -0
  27. data/__tests__/spec/12_validation_rules_spec.rb +39 -0
  28. data/__tests__/spec/snapshots/campaigns/added_loyalty_card_to_campaign.snap +1 -0
  29. data/__tests__/spec/snapshots/campaigns/added_voucher_to_campaign.snap +1 -0
  30. data/__tests__/spec/snapshots/campaigns/created_discount_campaign.snap +1 -0
  31. data/__tests__/spec/snapshots/campaigns/created_discount_campaign_with_val_rule.snap +1 -0
  32. data/__tests__/spec/snapshots/campaigns/created_loyalty_campaign.snap +1 -0
  33. data/__tests__/spec/snapshots/campaigns/created_promotion_campaign.snap +1 -0
  34. data/__tests__/spec/snapshots/campaigns/created_validation_rule_applicable_to.snap +1 -0
  35. data/__tests__/spec/snapshots/campaigns/created_validation_rule_more_than.snap +1 -0
  36. data/__tests__/spec/snapshots/customers/created_customer.snap +1 -0
  37. data/__tests__/spec/snapshots/customers/deleted_customer.snap +1 -0
  38. data/__tests__/spec/snapshots/events/created_event.snap +1 -0
  39. data/__tests__/spec/snapshots/loyalties/member_transactions.snap +1 -0
  40. data/__tests__/spec/snapshots/loyalties/updated_loyalty_member_card.snap +1 -0
  41. data/__tests__/spec/snapshots/orders/created_order.snap +1 -0
  42. data/__tests__/spec/snapshots/orders/list_orders.snap +1 -0
  43. data/__tests__/spec/snapshots/orders/updated_created_order_to_paid_status.snap +1 -0
  44. data/__tests__/spec/snapshots/products/added_sku_to_product.snap +1 -0
  45. data/__tests__/spec/snapshots/products/created_product.snap +1 -0
  46. data/__tests__/spec/snapshots/products/created_product2.snap +1 -0
  47. data/__tests__/spec/snapshots/products/get_previously_created_product.snap +1 -0
  48. data/__tests__/spec/snapshots/products/get_product_sku.snap +1 -0
  49. data/__tests__/spec/snapshots/products/list_skus.snap +1 -0
  50. data/__tests__/spec/snapshots/products/updated_product_price.snap +1 -0
  51. data/__tests__/spec/snapshots/products/updated_product_sku.snap +1 -0
  52. data/__tests__/spec/snapshots/publications/created_publication.snap +1 -0
  53. data/__tests__/spec/snapshots/qualifications/checked_eligibility.snap +1 -0
  54. data/__tests__/spec/snapshots/redemptions/redeem_stacked_applicable_discounts.snap +1 -0
  55. data/__tests__/spec/snapshots/redemptions/redeem_stacked_skipped_discounts.snap +1 -0
  56. data/__tests__/spec/snapshots/validation_rules/created_validation_rule_assignment.snap +1 -0
  57. data/__tests__/spec/snapshots/validations/applicable_stacked_validation.snap +1 -0
  58. data/__tests__/spec/snapshots/validations/inapplicable_stacked_validation.snap +1 -0
  59. data/__tests__/spec/snapshots/validations/redeemable_items_necessary_keys.snap +1 -0
  60. data/__tests__/spec/snapshots/validations/validations_succesful_order.snap +1 -0
  61. data/__tests__/spec/snapshots/validations_rules/created_validation_rule_assignment.snap +1 -0
  62. data/__tests__/spec/snapshots/vouchers/disabled_previously_created_voucher.snap +1 -0
  63. data/__tests__/spec/snapshots/vouchers/enabled_previously_created_voucher.snap +1 -0
  64. data/__tests__/spec/snapshots/vouchers/get_previously_created_voucher.snap +1 -0
  65. data/__tests__/spec/snapshots/vouchers/updated_loyalty_card_balance.snap +1 -0
  66. data/__tests__/spec/support/get_snapshot_without_uniq_keys.rb +47 -0
  67. data/__tests__/spec/support/snapshot_helper.rb +15 -0
  68. data/__tests__/spec/support/validate_deep_match.rb +41 -0
  69. data/docs/AccessSettingsCampaignAssignmentsList.md +11 -0
  70. data/docs/ApplicableTo.md +8 -5
  71. data/docs/ApplicableToResultList.md +4 -4
  72. data/docs/AreaStoreCampaignAssignment.md +12 -0
  73. data/docs/AsyncActionBase.md +17 -0
  74. data/docs/AsyncActionGetResponseBody.md +18 -0
  75. data/docs/AsyncActionsApi.md +129 -0
  76. data/docs/AsyncActionsListResponseBody.md +10 -0
  77. data/docs/BinApi.md +132 -0
  78. data/docs/BusValRuleAssignment.md +6 -6
  79. data/docs/Campaign.md +21 -18
  80. data/docs/CampaignBase.md +20 -18
  81. data/docs/CampaignLoyaltyCard.md +1 -1
  82. data/docs/CampaignLoyaltyCardExpirationRules.md +4 -4
  83. data/docs/CampaignLoyaltyVoucher.md +1 -1
  84. data/docs/CampaignTemplate.md +14 -0
  85. data/docs/CampaignVoucher.md +7 -5
  86. data/docs/CampaignVoucherRedemption.md +1 -1
  87. data/docs/CampaignsApi.md +26 -22
  88. data/docs/CampaignsCreateRequestBody.md +25 -54
  89. data/docs/CampaignsCreateRequestBodyPromotion.md +8 -0
  90. data/docs/CampaignsCreateRequestBodyVoucher.md +14 -0
  91. data/docs/CampaignsCreateRequestBodyVoucherRedemption.md +8 -0
  92. data/docs/CampaignsCreateResponseBody.md +21 -18
  93. data/docs/CampaignsGetResponseBody.md +21 -18
  94. data/docs/CampaignsImportCreateResponseBody.md +1 -1
  95. data/docs/CampaignsImportCsvCreateResponseBody.md +1 -1
  96. data/docs/CampaignsImportVoucherItem.md +10 -9
  97. data/docs/CampaignsListResponseBody.md +1 -1
  98. data/docs/CampaignsUpdateRequestBody.md +23 -54
  99. data/docs/CampaignsUpdateRequestBodyOptions.md +8 -0
  100. data/docs/CampaignsUpdateResponseBody.md +21 -18
  101. data/docs/CampaignsVouchersCreateCombinedResponseBody.md +37 -0
  102. data/docs/CampaignsVouchersCreateCombinedResponseBodyGift.md +10 -0
  103. data/docs/CampaignsVouchersCreateCombinedResponseBodyLoyaltyCard.md +11 -0
  104. data/docs/CampaignsVouchersCreateCombinedResponseBodyPublish.md +10 -0
  105. data/docs/CampaignsVouchersCreateCombinedResponseBodyRedemption.md +12 -0
  106. data/docs/CampaignsVouchersCreateInBulkRequestBody.md +3 -3
  107. data/docs/CampaignsVouchersCreateInBulkRequestBodyRedemption.md +8 -0
  108. data/docs/CampaignsVouchersCreateRequestBody.md +1 -1
  109. data/docs/CampaignsVouchersCreateRequestBodyRedemption.md +8 -0
  110. data/docs/CampaignsVouchersCreateResponseBody.md +12 -13
  111. data/docs/CampaignsVouchersCreateResponseBodyGift.md +10 -0
  112. data/docs/CampaignsVouchersCreateResponseBodyLoyaltyCard.md +11 -0
  113. data/docs/CampaignsVouchersCreateResponseBodyPublish.md +10 -0
  114. data/docs/CampaignsVouchersCreateResponseBodyRedemption.md +12 -0
  115. data/docs/CategoriesApi.md +2 -2
  116. data/docs/CategoriesCreateRequestBody.md +2 -2
  117. data/docs/CategoriesCreateResponseBody.md +5 -5
  118. data/docs/CategoriesGetResponseBody.md +6 -7
  119. data/docs/CategoriesListResponseBody.md +4 -4
  120. data/docs/CategoriesUpdateRequestBody.md +2 -2
  121. data/docs/CategoriesUpdateResponseBody.md +6 -6
  122. data/docs/Category.md +6 -7
  123. data/docs/CategoryWithStackingRulesType.md +14 -0
  124. data/docs/ClientEventsCreateRequestBody.md +1 -1
  125. data/docs/ClientEventsCreateRequestBodyLoyalty.md +1 -1
  126. data/docs/ClientEventsCreateRequestBodyReferral.md +1 -1
  127. data/docs/ClientEventsCreateResponseBody.md +5 -4
  128. data/docs/ClientPromotionsTiersListResponseBody.md +12 -0
  129. data/docs/ClientQualificationsCheckEligibilityRequestBody.md +1 -2
  130. data/docs/ClientRedemptionsRedeemRequestBody.md +2 -2
  131. data/docs/ClientRedemptionsRedeemRequestBodyOptions.md +8 -0
  132. data/docs/ClientRedemptionsRedeemRequestBodyRedeemablesItem.md +11 -0
  133. data/docs/ClientRedemptionsRedeemRequestBodyRedeemablesItemGift.md +8 -0
  134. data/docs/ClientRedemptionsRedeemRequestBodyRedeemablesItemReward.md +9 -0
  135. data/docs/ClientSideApi.md +43 -36
  136. data/docs/ClientValidationsValidateRequestBody.md +2 -2
  137. data/docs/ClientValidationsValidateRequestBodyOptions.md +8 -0
  138. data/docs/ClientValidationsValidateRequestBodyRedeemablesItem.md +11 -0
  139. data/docs/ClientValidationsValidateRequestBodyRedeemablesItemGift.md +8 -0
  140. data/docs/ClientValidationsValidateRequestBodyRedeemablesItemReward.md +9 -0
  141. data/docs/ClientValidationsValidateResponseBody.md +4 -3
  142. data/docs/ClientValidationsValidateResponseBodyRedeemablesItem.md +16 -0
  143. data/docs/ClientValidationsValidateResponseBodyRedeemablesItemResult.md +12 -0
  144. data/docs/ClientValidationsValidateResponseBodyRedeemablesItemResultDetails.md +9 -0
  145. data/docs/ClientValidationsValidateResponseBodyRedeemablesItemResultDiscount.md +24 -0
  146. data/docs/ClientValidationsValidateResponseBodyRedeemablesItemResultDiscountProduct.md +10 -0
  147. data/docs/ClientValidationsValidateResponseBodyRedeemablesItemResultGift.md +8 -0
  148. data/docs/ClientValidationsValidateResponseBodyRedeemablesItemResultLoyaltyCard.md +8 -0
  149. data/docs/CodeConfig.md +1 -1
  150. data/docs/CreatePublicationCampaign.md +1 -1
  151. data/docs/Customer.md +4 -4
  152. data/docs/CustomerActivity.md +2 -1
  153. data/docs/CustomerAddress.md +13 -0
  154. data/docs/CustomerId.md +2 -2
  155. data/docs/CustomerLoyalty.md +3 -3
  156. data/docs/CustomerLoyaltyCampaignsEntry.md +10 -0
  157. data/docs/CustomerRedeemable.md +17 -0
  158. data/docs/CustomerRedeemableRedeemable.md +10 -0
  159. data/docs/CustomerReferrals.md +2 -2
  160. data/docs/CustomerSummaryOrders.md +4 -4
  161. data/docs/CustomerSummaryRedemptions.md +8 -8
  162. data/docs/CustomerSummaryRedemptionsGift.md +2 -2
  163. data/docs/CustomerSummaryRedemptionsLoyaltyCard.md +2 -2
  164. data/docs/CustomerWithSummaryLoyaltyReferrals.md +12 -12
  165. data/docs/CustomerWithSummaryLoyaltyReferralsAddress.md +13 -0
  166. data/docs/CustomerWithSummaryLoyaltyReferralsAssets.md +8 -0
  167. data/docs/CustomersActivitiesListResponseBody.md +4 -4
  168. data/docs/CustomersActivityListResponseBody.md +12 -0
  169. data/docs/CustomersApi.md +182 -94
  170. data/docs/CustomersCreateRequestBody.md +2 -2
  171. data/docs/CustomersCreateRequestBodyAddress.md +13 -0
  172. data/docs/CustomersCreateResponseBody.md +9 -9
  173. data/docs/CustomersCreateResponseBodyAddress.md +13 -0
  174. data/docs/CustomersCreateResponseBodyAssets.md +8 -0
  175. data/docs/CustomersGetResponseBody.md +9 -9
  176. data/docs/CustomersGetResponseBodyAddress.md +13 -0
  177. data/docs/CustomersGetResponseBodyAssets.md +8 -0
  178. data/docs/CustomersImportCsvCreateResponseBody.md +1 -1
  179. data/docs/CustomersListResponseBody.md +5 -5
  180. data/docs/CustomersMetadataUpdateInBulkRequestBody.md +2 -2
  181. data/docs/CustomersMetadataUpdateInBulkResponseBody.md +1 -1
  182. data/docs/CustomersPermanentDeletionCreateResponseBody.md +7 -7
  183. data/docs/CustomersPermanentDeletionCreateResponseBodyDataJson.md +7 -7
  184. data/docs/CustomersRedeemablesListResponseBody.md +13 -0
  185. data/docs/CustomersSegmentsListResponseBody.md +4 -4
  186. data/docs/CustomersUpdateInBulkRequestBody.md +3 -3
  187. data/docs/CustomersUpdateInBulkRequestBodyAddress.md +13 -0
  188. data/docs/CustomersUpdateInBulkResponseBody.md +1 -1
  189. data/docs/CustomersUpdateRequestBody.md +2 -2
  190. data/docs/CustomersUpdateRequestBodyAddress.md +13 -0
  191. data/docs/CustomersUpdateResponseBody.md +9 -9
  192. data/docs/CustomersUpdateResponseBodyAddress.md +13 -0
  193. data/docs/CustomersUpdateResponseBodyAssets.md +8 -0
  194. data/docs/Discount.md +21 -52
  195. data/docs/DiscountUnitMultipleOneUnit.md +2 -2
  196. data/docs/EarningRule.md +19 -17
  197. data/docs/EarningRuleCustomEvent.md +8 -0
  198. data/docs/EarningRuleLoyalty.md +14 -0
  199. data/docs/EarningRuleLoyaltyCustomEvent.md +8 -0
  200. data/docs/EarningRuleLoyaltyCustomEventMetadata.md +10 -0
  201. data/docs/EarningRuleLoyaltyCustomer.md +8 -0
  202. data/docs/EarningRuleLoyaltyCustomerMetadata.md +10 -0
  203. data/docs/EarningRuleLoyaltyOrder.md +10 -0
  204. data/docs/EarningRuleLoyaltyOrderAmount.md +9 -0
  205. data/docs/EarningRuleLoyaltyOrderItems.md +10 -0
  206. data/docs/EarningRuleLoyaltyOrderItemsAmount.md +11 -0
  207. data/docs/EarningRuleLoyaltyOrderItemsQuantity.md +11 -0
  208. data/docs/EarningRuleLoyaltyOrderItemsSubtotalAmount.md +11 -0
  209. data/docs/EarningRuleLoyaltyOrderMetadata.md +10 -0
  210. data/docs/EarningRuleLoyaltyOrderTotalAmount.md +9 -0
  211. data/docs/EarningRuleLoyaltyTier.md +8 -0
  212. data/docs/EarningRuleSegment.md +8 -0
  213. data/docs/EarningRuleSource.md +10 -0
  214. data/docs/Error.md +5 -5
  215. data/docs/EventsApi.md +1 -1
  216. data/docs/EventsCreateRequestBody.md +3 -3
  217. data/docs/EventsCreateRequestBodyLoyalty.md +8 -0
  218. data/docs/EventsCreateRequestBodyReferral.md +9 -0
  219. data/docs/EventsCreateResponseBody.md +5 -4
  220. data/docs/Export.md +13 -56
  221. data/docs/ExportParameters.md +10 -0
  222. data/docs/ExportParametersFilters.md +11 -0
  223. data/docs/ExportResult.md +8 -0
  224. data/docs/ExportsApi.md +19 -7
  225. data/docs/ExportsCreateRequestBody.md +5 -55
  226. data/docs/ExportsCreateRequestBodyParameters.md +10 -0
  227. data/docs/ExportsCreateRequestBodyParametersFilters.md +11 -0
  228. data/docs/ExportsCreateResponseBody.md +13 -56
  229. data/docs/ExportsCreateResponseBodyParameters.md +10 -0
  230. data/docs/ExportsCreateResponseBodyParametersFilters.md +11 -0
  231. data/docs/ExportsGetResponseBody.md +8 -8
  232. data/docs/ExportsGetResponseBodyParameters.md +10 -0
  233. data/docs/ExportsGetResponseBodyParametersFilters.md +11 -0
  234. data/docs/ExportsGetResponseBodyResult.md +8 -0
  235. data/docs/ExportsListResponseBody.md +4 -4
  236. data/docs/FilterConditionsDateTime.md +13 -0
  237. data/docs/FilterConditionsString.md +4 -4
  238. data/docs/FiltersCondition.md +25 -25
  239. data/docs/Gift.md +2 -2
  240. data/docs/InapplicableTo.md +8 -5
  241. data/docs/InapplicableToResultList.md +4 -4
  242. data/docs/ListPublicationsItemVoucher.md +3 -3
  243. data/docs/Location.md +13 -0
  244. data/docs/LocationShape.md +11 -0
  245. data/docs/LocationShapeDistance.md +9 -0
  246. data/docs/LocationShapeGeojson.md +9 -0
  247. data/docs/LocationsApi.md +133 -0
  248. data/docs/LocationsGetResponseBody.md +13 -0
  249. data/docs/LocationsGetResponseBodyShape.md +11 -0
  250. data/docs/LocationsGetResponseBodyShapeDistance.md +9 -0
  251. data/docs/LocationsGetResponseBodyShapeGeojson.md +9 -0
  252. data/docs/LocationsListResponseBody.md +12 -0
  253. data/docs/LoyaltiesApi.md +1492 -324
  254. data/docs/LoyaltiesCreateCampaignRequestBody.md +26 -0
  255. data/docs/LoyaltiesCreateCampaignResponseBody.md +38 -0
  256. data/docs/LoyaltiesDeleteResponseBody.md +1 -1
  257. data/docs/LoyaltiesEarningRulesCreateRequestBodyItem.md +21 -0
  258. data/docs/LoyaltiesEarningRulesCreateRequestBodyItemCustomEvent.md +8 -0
  259. data/docs/LoyaltiesEarningRulesCreateRequestBodyItemLoyalty.md +14 -0
  260. data/docs/LoyaltiesEarningRulesCreateRequestBodyItemLoyaltyCustomEvent.md +8 -0
  261. data/docs/LoyaltiesEarningRulesCreateRequestBodyItemLoyaltyCustomEventMetadata.md +10 -0
  262. data/docs/LoyaltiesEarningRulesCreateRequestBodyItemLoyaltyCustomer.md +8 -0
  263. data/docs/LoyaltiesEarningRulesCreateRequestBodyItemLoyaltyCustomerMetadata.md +10 -0
  264. data/docs/LoyaltiesEarningRulesCreateRequestBodyItemLoyaltyOrder.md +10 -0
  265. data/docs/LoyaltiesEarningRulesCreateRequestBodyItemLoyaltyOrderAmount.md +9 -0
  266. data/docs/LoyaltiesEarningRulesCreateRequestBodyItemLoyaltyOrderItems.md +10 -0
  267. data/docs/LoyaltiesEarningRulesCreateRequestBodyItemLoyaltyOrderItemsAmount.md +11 -0
  268. data/docs/LoyaltiesEarningRulesCreateRequestBodyItemLoyaltyOrderItemsQuantity.md +11 -0
  269. data/docs/LoyaltiesEarningRulesCreateRequestBodyItemLoyaltyOrderItemsSubtotalAmount.md +11 -0
  270. data/docs/LoyaltiesEarningRulesCreateRequestBodyItemLoyaltyOrderMetadata.md +10 -0
  271. data/docs/LoyaltiesEarningRulesCreateRequestBodyItemLoyaltyOrderTotalAmount.md +9 -0
  272. data/docs/LoyaltiesEarningRulesCreateRequestBodyItemLoyaltyTier.md +8 -0
  273. data/docs/LoyaltiesEarningRulesCreateRequestBodyItemSegment.md +8 -0
  274. data/docs/LoyaltiesEarningRulesCreateRequestBodyItemSource.md +8 -0
  275. data/docs/LoyaltiesEarningRulesCreateResponseBody.md +26 -0
  276. data/docs/LoyaltiesEarningRulesCreateResponseBodyCustomEvent.md +8 -0
  277. data/docs/LoyaltiesEarningRulesCreateResponseBodyLoyalty.md +14 -0
  278. data/docs/LoyaltiesEarningRulesCreateResponseBodyLoyaltyCustomEvent.md +8 -0
  279. data/docs/LoyaltiesEarningRulesCreateResponseBodyLoyaltyCustomEventMetadata.md +10 -0
  280. data/docs/LoyaltiesEarningRulesCreateResponseBodyLoyaltyCustomer.md +8 -0
  281. data/docs/LoyaltiesEarningRulesCreateResponseBodyLoyaltyCustomerMetadata.md +10 -0
  282. data/docs/LoyaltiesEarningRulesCreateResponseBodyLoyaltyOrder.md +10 -0
  283. data/docs/LoyaltiesEarningRulesCreateResponseBodyLoyaltyOrderAmount.md +9 -0
  284. data/docs/LoyaltiesEarningRulesCreateResponseBodyLoyaltyOrderItems.md +10 -0
  285. data/docs/LoyaltiesEarningRulesCreateResponseBodyLoyaltyOrderItemsAmount.md +11 -0
  286. data/docs/LoyaltiesEarningRulesCreateResponseBodyLoyaltyOrderItemsQuantity.md +11 -0
  287. data/docs/LoyaltiesEarningRulesCreateResponseBodyLoyaltyOrderItemsSubtotalAmount.md +11 -0
  288. data/docs/LoyaltiesEarningRulesCreateResponseBodyLoyaltyOrderMetadata.md +10 -0
  289. data/docs/LoyaltiesEarningRulesCreateResponseBodyLoyaltyOrderTotalAmount.md +9 -0
  290. data/docs/LoyaltiesEarningRulesCreateResponseBodyLoyaltyTier.md +8 -0
  291. data/docs/LoyaltiesEarningRulesCreateResponseBodySegment.md +8 -0
  292. data/docs/LoyaltiesEarningRulesCreateResponseBodySource.md +10 -0
  293. data/docs/LoyaltiesEarningRulesDisableResponseBody.md +18 -16
  294. data/docs/LoyaltiesEarningRulesDisableResponseBodyCustomEvent.md +8 -0
  295. data/docs/LoyaltiesEarningRulesDisableResponseBodyLoyalty.md +14 -0
  296. data/docs/LoyaltiesEarningRulesDisableResponseBodyLoyaltyCustomEvent.md +8 -0
  297. data/docs/LoyaltiesEarningRulesDisableResponseBodyLoyaltyCustomEventMetadata.md +10 -0
  298. data/docs/LoyaltiesEarningRulesDisableResponseBodyLoyaltyCustomer.md +8 -0
  299. data/docs/LoyaltiesEarningRulesDisableResponseBodyLoyaltyCustomerMetadata.md +10 -0
  300. data/docs/LoyaltiesEarningRulesDisableResponseBodyLoyaltyOrder.md +10 -0
  301. data/docs/LoyaltiesEarningRulesDisableResponseBodyLoyaltyOrderAmount.md +9 -0
  302. data/docs/LoyaltiesEarningRulesDisableResponseBodyLoyaltyOrderItems.md +10 -0
  303. data/docs/LoyaltiesEarningRulesDisableResponseBodyLoyaltyOrderItemsAmount.md +11 -0
  304. data/docs/LoyaltiesEarningRulesDisableResponseBodyLoyaltyOrderItemsQuantity.md +11 -0
  305. data/docs/LoyaltiesEarningRulesDisableResponseBodyLoyaltyOrderItemsSubtotalAmount.md +11 -0
  306. data/docs/LoyaltiesEarningRulesDisableResponseBodyLoyaltyOrderMetadata.md +10 -0
  307. data/docs/LoyaltiesEarningRulesDisableResponseBodyLoyaltyOrderTotalAmount.md +9 -0
  308. data/docs/LoyaltiesEarningRulesDisableResponseBodyLoyaltyTier.md +8 -0
  309. data/docs/LoyaltiesEarningRulesDisableResponseBodySegment.md +8 -0
  310. data/docs/LoyaltiesEarningRulesDisableResponseBodySource.md +10 -0
  311. data/docs/LoyaltiesEarningRulesEnableResponseBody.md +18 -16
  312. data/docs/LoyaltiesEarningRulesEnableResponseBodyCustomEvent.md +8 -0
  313. data/docs/LoyaltiesEarningRulesEnableResponseBodyLoyalty.md +14 -0
  314. data/docs/LoyaltiesEarningRulesEnableResponseBodyLoyaltyCustomEvent.md +8 -0
  315. data/docs/LoyaltiesEarningRulesEnableResponseBodyLoyaltyCustomEventMetadata.md +10 -0
  316. data/docs/LoyaltiesEarningRulesEnableResponseBodyLoyaltyCustomer.md +8 -0
  317. data/docs/LoyaltiesEarningRulesEnableResponseBodyLoyaltyCustomerMetadata.md +10 -0
  318. data/docs/LoyaltiesEarningRulesEnableResponseBodyLoyaltyOrder.md +10 -0
  319. data/docs/LoyaltiesEarningRulesEnableResponseBodyLoyaltyOrderAmount.md +9 -0
  320. data/docs/LoyaltiesEarningRulesEnableResponseBodyLoyaltyOrderItems.md +10 -0
  321. data/docs/LoyaltiesEarningRulesEnableResponseBodyLoyaltyOrderItemsAmount.md +11 -0
  322. data/docs/LoyaltiesEarningRulesEnableResponseBodyLoyaltyOrderItemsQuantity.md +11 -0
  323. data/docs/LoyaltiesEarningRulesEnableResponseBodyLoyaltyOrderItemsSubtotalAmount.md +11 -0
  324. data/docs/LoyaltiesEarningRulesEnableResponseBodyLoyaltyOrderMetadata.md +10 -0
  325. data/docs/LoyaltiesEarningRulesEnableResponseBodyLoyaltyOrderTotalAmount.md +9 -0
  326. data/docs/LoyaltiesEarningRulesEnableResponseBodyLoyaltyTier.md +8 -0
  327. data/docs/LoyaltiesEarningRulesEnableResponseBodySegment.md +8 -0
  328. data/docs/LoyaltiesEarningRulesEnableResponseBodySource.md +10 -0
  329. data/docs/LoyaltiesEarningRulesGetResponseBody.md +19 -17
  330. data/docs/LoyaltiesEarningRulesGetResponseBodyCustomEvent.md +8 -0
  331. data/docs/LoyaltiesEarningRulesGetResponseBodyLoyalty.md +14 -0
  332. data/docs/LoyaltiesEarningRulesGetResponseBodyLoyaltyCustomEvent.md +8 -0
  333. data/docs/LoyaltiesEarningRulesGetResponseBodyLoyaltyCustomEventMetadata.md +10 -0
  334. data/docs/LoyaltiesEarningRulesGetResponseBodyLoyaltyCustomer.md +8 -0
  335. data/docs/LoyaltiesEarningRulesGetResponseBodyLoyaltyCustomerMetadata.md +10 -0
  336. data/docs/LoyaltiesEarningRulesGetResponseBodyLoyaltyOrder.md +10 -0
  337. data/docs/LoyaltiesEarningRulesGetResponseBodyLoyaltyOrderAmount.md +9 -0
  338. data/docs/LoyaltiesEarningRulesGetResponseBodyLoyaltyOrderItems.md +10 -0
  339. data/docs/LoyaltiesEarningRulesGetResponseBodyLoyaltyOrderItemsAmount.md +11 -0
  340. data/docs/LoyaltiesEarningRulesGetResponseBodyLoyaltyOrderItemsQuantity.md +11 -0
  341. data/docs/LoyaltiesEarningRulesGetResponseBodyLoyaltyOrderItemsSubtotalAmount.md +11 -0
  342. data/docs/LoyaltiesEarningRulesGetResponseBodyLoyaltyOrderMetadata.md +10 -0
  343. data/docs/LoyaltiesEarningRulesGetResponseBodyLoyaltyOrderTotalAmount.md +9 -0
  344. data/docs/LoyaltiesEarningRulesGetResponseBodyLoyaltyTier.md +8 -0
  345. data/docs/LoyaltiesEarningRulesGetResponseBodySegment.md +8 -0
  346. data/docs/LoyaltiesEarningRulesGetResponseBodySource.md +10 -0
  347. data/docs/LoyaltiesEarningRulesListResponseBody.md +11 -0
  348. data/docs/LoyaltiesEarningRulesUpdateRequestBody.md +17 -0
  349. data/docs/LoyaltiesEarningRulesUpdateRequestBodyLoyalty.md +14 -0
  350. data/docs/LoyaltiesEarningRulesUpdateRequestBodyLoyaltyCustomEvent.md +8 -0
  351. data/docs/LoyaltiesEarningRulesUpdateRequestBodyLoyaltyCustomEventMetadata.md +10 -0
  352. data/docs/LoyaltiesEarningRulesUpdateRequestBodyLoyaltyCustomer.md +8 -0
  353. data/docs/LoyaltiesEarningRulesUpdateRequestBodyLoyaltyCustomerMetadata.md +10 -0
  354. data/docs/LoyaltiesEarningRulesUpdateRequestBodyLoyaltyOrder.md +10 -0
  355. data/docs/LoyaltiesEarningRulesUpdateRequestBodyLoyaltyOrderAmount.md +9 -0
  356. data/docs/LoyaltiesEarningRulesUpdateRequestBodyLoyaltyOrderItems.md +10 -0
  357. data/docs/LoyaltiesEarningRulesUpdateRequestBodyLoyaltyOrderItemsAmount.md +11 -0
  358. data/docs/LoyaltiesEarningRulesUpdateRequestBodyLoyaltyOrderItemsQuantity.md +11 -0
  359. data/docs/LoyaltiesEarningRulesUpdateRequestBodyLoyaltyOrderItemsSubtotalAmount.md +11 -0
  360. data/docs/LoyaltiesEarningRulesUpdateRequestBodyLoyaltyOrderMetadata.md +10 -0
  361. data/docs/LoyaltiesEarningRulesUpdateRequestBodyLoyaltyOrderTotalAmount.md +9 -0
  362. data/docs/LoyaltiesEarningRulesUpdateRequestBodySource.md +8 -0
  363. data/docs/LoyaltiesEarningRulesUpdateResponseBody.md +26 -0
  364. data/docs/LoyaltiesEarningRulesUpdateResponseBodyCustomEvent.md +8 -0
  365. data/docs/LoyaltiesEarningRulesUpdateResponseBodyLoyalty.md +14 -0
  366. data/docs/LoyaltiesEarningRulesUpdateResponseBodyLoyaltyCustomEvent.md +8 -0
  367. data/docs/LoyaltiesEarningRulesUpdateResponseBodyLoyaltyCustomEventMetadata.md +10 -0
  368. data/docs/LoyaltiesEarningRulesUpdateResponseBodyLoyaltyCustomer.md +8 -0
  369. data/docs/LoyaltiesEarningRulesUpdateResponseBodyLoyaltyCustomerMetadata.md +10 -0
  370. data/docs/LoyaltiesEarningRulesUpdateResponseBodyLoyaltyOrder.md +10 -0
  371. data/docs/LoyaltiesEarningRulesUpdateResponseBodyLoyaltyOrderAmount.md +9 -0
  372. data/docs/LoyaltiesEarningRulesUpdateResponseBodyLoyaltyOrderItems.md +10 -0
  373. data/docs/LoyaltiesEarningRulesUpdateResponseBodyLoyaltyOrderItemsAmount.md +11 -0
  374. data/docs/LoyaltiesEarningRulesUpdateResponseBodyLoyaltyOrderItemsQuantity.md +11 -0
  375. data/docs/LoyaltiesEarningRulesUpdateResponseBodyLoyaltyOrderItemsSubtotalAmount.md +11 -0
  376. data/docs/LoyaltiesEarningRulesUpdateResponseBodyLoyaltyOrderMetadata.md +10 -0
  377. data/docs/LoyaltiesEarningRulesUpdateResponseBodyLoyaltyOrderTotalAmount.md +9 -0
  378. data/docs/LoyaltiesEarningRulesUpdateResponseBodyLoyaltyTier.md +8 -0
  379. data/docs/LoyaltiesEarningRulesUpdateResponseBodySegment.md +8 -0
  380. data/docs/LoyaltiesEarningRulesUpdateResponseBodySource.md +10 -0
  381. data/docs/LoyaltiesGetCampaignResponseBody.md +38 -0
  382. data/docs/LoyaltiesListCampaignsResponseBody.md +11 -0
  383. data/docs/LoyaltiesListMembersResponseBody.md +11 -0
  384. data/docs/LoyaltiesLoyaltyTierReward.md +1 -1
  385. data/docs/LoyaltiesMemberActivityListResponseBody.md +12 -0
  386. data/docs/LoyaltiesMembersBalanceUpdateRequestBody.md +2 -2
  387. data/docs/LoyaltiesMembersBalanceUpdateResponseBody.md +6 -6
  388. data/docs/LoyaltiesMembersBalanceUpdateResponseBodyRelatedObject.md +2 -2
  389. data/docs/LoyaltiesMembersCreateRequestBody.md +12 -0
  390. data/docs/LoyaltiesMembersCreateResponseBody.md +33 -0
  391. data/docs/LoyaltiesMembersCreateResponseBodyLoyaltyCard.md +11 -0
  392. data/docs/LoyaltiesMembersCreateResponseBodyPublish.md +10 -0
  393. data/docs/LoyaltiesMembersCreateResponseBodyRedemption.md +12 -0
  394. data/docs/LoyaltiesMembersGetResponseBody.md +33 -0
  395. data/docs/LoyaltiesMembersGetResponseBodyLoyaltyCard.md +11 -0
  396. data/docs/LoyaltiesMembersGetResponseBodyPublish.md +10 -0
  397. data/docs/LoyaltiesMembersGetResponseBodyRedemption.md +12 -0
  398. data/docs/LoyaltiesMembersPointsExpirationListResponseBody.md +4 -4
  399. data/docs/LoyaltiesMembersPointsExpirationListResponseBodyDataItem.md +3 -3
  400. data/docs/LoyaltiesMembersRedemptionRedeemResponseBody.md +20 -20
  401. data/docs/LoyaltiesMembersRedemptionRedeemResponseBodyChannel.md +9 -0
  402. data/docs/LoyaltiesMembersRedemptionRedeemResponseBodyGift.md +8 -0
  403. data/docs/LoyaltiesMembersRedemptionRedeemResponseBodyLoyaltyCard.md +8 -0
  404. data/docs/LoyaltiesMembersRedemptionRedeemResponseBodyRelatedRedemptions.md +9 -0
  405. data/docs/LoyaltiesMembersRedemptionRedeemResponseBodyRelatedRedemptionsRedemptionsItem.md +9 -0
  406. data/docs/LoyaltiesMembersRedemptionRedeemResponseBodyRelatedRedemptionsRollbacksItem.md +9 -0
  407. data/docs/LoyaltiesMembersRedemptionRedeemResponseBodyVoucher.md +37 -0
  408. data/docs/LoyaltiesMembersRedemptionRedeemResponseBodyVoucherGift.md +10 -0
  409. data/docs/LoyaltiesMembersRedemptionRedeemResponseBodyVoucherLoyaltyCard.md +11 -0
  410. data/docs/LoyaltiesMembersRedemptionRedeemResponseBodyVoucherPublish.md +10 -0
  411. data/docs/LoyaltiesMembersRedemptionRedeemResponseBodyVoucherRedemption.md +12 -0
  412. data/docs/LoyaltiesMembersRewardsListResponseBody.md +4 -4
  413. data/docs/LoyaltiesMembersRewardsListResponseBodyDataItem.md +1 -1
  414. data/docs/LoyaltiesMembersTiersListResponseBody.md +4 -4
  415. data/docs/LoyaltiesMembersTransactionsExportCreateResponseBody.md +8 -8
  416. data/docs/LoyaltiesMembersTransactionsExportCreateResponseBodyParameters.md +10 -0
  417. data/docs/LoyaltiesMembersTransactionsListResponseBody.md +5 -4
  418. data/docs/LoyaltiesMembersTransfersCreateResponseBody.md +16 -15
  419. data/docs/LoyaltiesMembersTransfersCreateResponseBodyLoyaltyCard.md +2 -2
  420. data/docs/LoyaltiesMembersTransfersCreateResponseBodyPublish.md +2 -2
  421. data/docs/LoyaltiesMembersTransfersCreateResponseBodyRedemption.md +3 -4
  422. data/docs/LoyaltiesPointsExpirationExportCreateRequestBody.md +8 -0
  423. data/docs/LoyaltiesPointsExpirationExportCreateRequestBodyParameters.md +10 -0
  424. data/docs/LoyaltiesPointsExpirationExportCreateRequestBodyParametersFilters.md +10 -0
  425. data/docs/LoyaltiesPointsExpirationExportCreateRequestBodyParametersFiltersCampaignId.md +8 -0
  426. data/docs/LoyaltiesPointsExpirationExportCreateRequestBodyParametersFiltersCampaignIdConditions.md +11 -0
  427. data/docs/LoyaltiesPointsExpirationExportCreateRequestBodyParametersFiltersVoucherId.md +8 -0
  428. data/docs/LoyaltiesPointsExpirationExportCreateRequestBodyParametersFiltersVoucherIdConditions.md +11 -0
  429. data/docs/LoyaltiesPointsExpirationExportCreateResponseBody.md +16 -0
  430. data/docs/LoyaltiesPointsExpirationExportCreateResponseBodyParameters.md +10 -0
  431. data/docs/LoyaltiesPointsExpirationExportCreateResponseBodyParametersFilters.md +10 -0
  432. data/docs/LoyaltiesPointsExpirationExportCreateResponseBodyParametersFiltersCampaignId.md +8 -0
  433. data/docs/LoyaltiesPointsExpirationExportCreateResponseBodyParametersFiltersCampaignIdConditions.md +11 -0
  434. data/docs/LoyaltiesPointsExpirationExportCreateResponseBodyParametersFiltersVoucherId.md +8 -0
  435. data/docs/LoyaltiesPointsExpirationExportCreateResponseBodyParametersFiltersVoucherIdConditions.md +11 -0
  436. data/docs/LoyaltiesRewardAssignmentsGetResponseBody.md +8 -8
  437. data/docs/LoyaltiesRewardAssignmentsGetResponseBodyParameters.md +8 -0
  438. data/docs/LoyaltiesRewardAssignmentsGetResponseBodyParametersLoyalty.md +9 -0
  439. data/docs/LoyaltiesRewardAssignmentsListResponseBody.md +11 -0
  440. data/docs/LoyaltiesRewardAssignmentsRewardGetResponseBody.md +10 -10
  441. data/docs/LoyaltiesRewardAssignmentsRewardGetResponseBodyAttributes.md +9 -0
  442. data/docs/LoyaltiesRewardsCreateAssignmentItemRequestBody.md +10 -0
  443. data/docs/LoyaltiesRewardsCreateAssignmentItemRequestBodyParameters.md +8 -0
  444. data/docs/LoyaltiesRewardsCreateAssignmentItemRequestBodyParametersLoyalty.md +8 -0
  445. data/docs/LoyaltiesRewardsCreateAssignmentResponseBody.md +15 -0
  446. data/docs/LoyaltiesRewardsCreateAssignmentResponseBodyParameters.md +8 -0
  447. data/docs/LoyaltiesRewardsCreateAssignmentResponseBodyParametersLoyalty.md +9 -0
  448. data/docs/LoyaltiesRewardsGetResponseBody.md +8 -8
  449. data/docs/LoyaltiesRewardsGetResponseBodyParameters.md +8 -0
  450. data/docs/LoyaltiesRewardsGetResponseBodyParametersLoyalty.md +9 -0
  451. data/docs/LoyaltiesRewardsListAssignmentsResponseBody.md +11 -0
  452. data/docs/LoyaltiesRewardsUpdateAssignmentRequestBody.md +8 -0
  453. data/docs/LoyaltiesRewardsUpdateAssignmentRequestBodyParameters.md +8 -0
  454. data/docs/LoyaltiesRewardsUpdateAssignmentRequestBodyParametersLoyalty.md +9 -0
  455. data/docs/LoyaltiesRewardsUpdateAssignmentResponseBody.md +15 -0
  456. data/docs/LoyaltiesRewardsUpdateAssignmentResponseBodyParameters.md +8 -0
  457. data/docs/LoyaltiesRewardsUpdateAssignmentResponseBodyParametersLoyalty.md +9 -0
  458. data/docs/LoyaltiesTiersCreateInBulkRequestBodyItem.md +2 -2
  459. data/docs/LoyaltiesTiersEarningRulesListResponseBody.md +4 -4
  460. data/docs/LoyaltiesTiersGetResponseBody.md +9 -9
  461. data/docs/LoyaltiesTiersGetResponseBodyConfig.md +8 -0
  462. data/docs/LoyaltiesTiersGetResponseBodyConfigPoints.md +9 -0
  463. data/docs/LoyaltiesTiersGetResponseBodyPoints.md +9 -0
  464. data/docs/LoyaltiesTiersListResponseBody.md +4 -4
  465. data/docs/LoyaltiesTiersRewardsListResponseBody.md +4 -4
  466. data/docs/LoyaltiesTransferPoints.md +3 -3
  467. data/docs/LoyaltiesUpdateCampaignRequestBody.md +23 -0
  468. data/docs/LoyaltiesUpdateCampaignRequestBodyOptions.md +8 -0
  469. data/docs/LoyaltiesUpdateCampaignResponseBody.md +38 -0
  470. data/docs/LoyaltyCampaign.md +38 -0
  471. data/docs/LoyaltyCampaignVoucher.md +17 -0
  472. data/docs/LoyaltyCampaignVoucherRedemption.md +8 -0
  473. data/docs/LoyaltyCardTransaction.md +9 -9
  474. data/docs/LoyaltyCardTransactionDetails.md +20 -0
  475. data/docs/LoyaltyCardTransactionDetailsBalance.md +13 -0
  476. data/docs/LoyaltyCardTransactionDetailsBalanceRelatedObject.md +9 -0
  477. data/docs/LoyaltyCardTransactionDetailsCustomEvent.md +9 -0
  478. data/docs/LoyaltyCardTransactionDetailsEarningRule.md +9 -0
  479. data/docs/LoyaltyCardTransactionDetailsEarningRuleSource.md +8 -0
  480. data/docs/LoyaltyCardTransactionDetailsEvent.md +9 -0
  481. data/docs/LoyaltyCardTransactionDetailsEventSchema.md +9 -0
  482. data/docs/LoyaltyCardTransactionDetailsLoyaltyTier.md +9 -0
  483. data/docs/LoyaltyCardTransactionDetailsOrder.md +9 -0
  484. data/docs/LoyaltyCardTransactionDetailsRedemption.md +8 -0
  485. data/docs/LoyaltyCardTransactionDetailsReward.md +9 -0
  486. data/docs/LoyaltyCardTransactionDetailsRollback.md +8 -0
  487. data/docs/LoyaltyCardTransactionDetailsSegment.md +9 -0
  488. data/docs/LoyaltyMember.md +33 -0
  489. data/docs/LoyaltyMemberLoyaltyCard.md +11 -0
  490. data/docs/LoyaltyMemberPublish.md +10 -0
  491. data/docs/LoyaltyMemberRedemption.md +12 -0
  492. data/docs/LoyaltyTier.md +9 -9
  493. data/docs/LoyaltyTierBase.md +2 -2
  494. data/docs/LoyaltyTierConfig.md +8 -0
  495. data/docs/LoyaltyTierConfigPoints.md +9 -0
  496. data/docs/LoyaltyTierExpiration.md +5 -5
  497. data/docs/LoyaltyTierPoints.md +9 -0
  498. data/docs/LoyaltyTiersExpirationAll.md +3 -3
  499. data/docs/LoyaltyTiersExpirationAllExpirationDate.md +2 -2
  500. data/docs/LoyaltyTiersExpirationAllStartDate.md +1 -1
  501. data/docs/ManagementApi.md +2348 -0
  502. data/docs/ManagementProject.md +30 -0
  503. data/docs/ManagementProjectApiUsageNotifications.md +13 -0
  504. data/docs/ManagementProjectDefaultCodeConfig.md +8 -0
  505. data/docs/ManagementProjectLimits.md +9 -0
  506. data/docs/ManagementProjectLimitsApiCallsItem.md +9 -0
  507. data/docs/ManagementProjectLimitsBulkApiCallsItem.md +9 -0
  508. data/docs/ManagementProjectWebhooksCalloutNotifications.md +9 -0
  509. data/docs/ManagementProjectWebhooksCalloutNotificationsDistributions.md +10 -0
  510. data/docs/ManagementProjectWebhooksCalloutNotificationsWebhooks.md +10 -0
  511. data/docs/ManagementProjectsBranding.md +12 -0
  512. data/docs/ManagementProjectsBrandingAddress.md +12 -0
  513. data/docs/ManagementProjectsBrandingBrand.md +12 -0
  514. data/docs/ManagementProjectsBrandingCockpits.md +15 -0
  515. data/docs/ManagementProjectsBrandingContact.md +9 -0
  516. data/docs/ManagementProjectsBrandingCreateRequestBody.md +11 -0
  517. data/docs/ManagementProjectsBrandingCreateRequestBodyAddress.md +12 -0
  518. data/docs/ManagementProjectsBrandingCreateRequestBodyBrand.md +12 -0
  519. data/docs/ManagementProjectsBrandingCreateRequestBodyCockpits.md +15 -0
  520. data/docs/ManagementProjectsBrandingCreateRequestBodyContact.md +9 -0
  521. data/docs/ManagementProjectsBrandingCreateResponseBody.md +12 -0
  522. data/docs/ManagementProjectsBrandingCreateResponseBodyAddress.md +12 -0
  523. data/docs/ManagementProjectsBrandingCreateResponseBodyBrand.md +12 -0
  524. data/docs/ManagementProjectsBrandingCreateResponseBodyCockpits.md +15 -0
  525. data/docs/ManagementProjectsBrandingCreateResponseBodyContact.md +9 -0
  526. data/docs/ManagementProjectsBrandingGetResponseBody.md +12 -0
  527. data/docs/ManagementProjectsBrandingGetResponseBodyAddress.md +12 -0
  528. data/docs/ManagementProjectsBrandingGetResponseBodyBrand.md +12 -0
  529. data/docs/ManagementProjectsBrandingGetResponseBodyCockpits.md +15 -0
  530. data/docs/ManagementProjectsBrandingGetResponseBodyContact.md +9 -0
  531. data/docs/ManagementProjectsBrandingListResponseBody.md +11 -0
  532. data/docs/ManagementProjectsBrandingUpdateRequestBody.md +11 -0
  533. data/docs/ManagementProjectsBrandingUpdateRequestBodyAddress.md +12 -0
  534. data/docs/ManagementProjectsBrandingUpdateRequestBodyBrand.md +12 -0
  535. data/docs/ManagementProjectsBrandingUpdateRequestBodyCockpits.md +15 -0
  536. data/docs/ManagementProjectsBrandingUpdateRequestBodyContact.md +9 -0
  537. data/docs/ManagementProjectsBrandingUpdateResponseBody.md +12 -0
  538. data/docs/ManagementProjectsBrandingUpdateResponseBodyAddress.md +12 -0
  539. data/docs/ManagementProjectsBrandingUpdateResponseBodyBrand.md +12 -0
  540. data/docs/ManagementProjectsBrandingUpdateResponseBodyCockpits.md +15 -0
  541. data/docs/ManagementProjectsBrandingUpdateResponseBodyContact.md +9 -0
  542. data/docs/ManagementProjectsCreateRequestBody.md +26 -0
  543. data/docs/ManagementProjectsCreateRequestBodyApiUsageNotifications.md +12 -0
  544. data/docs/ManagementProjectsCreateRequestBodyUsersItem.md +10 -0
  545. data/docs/ManagementProjectsCreateRequestBodyWebhooksCalloutNotifications.md +9 -0
  546. data/docs/ManagementProjectsCreateRequestBodyWebhooksCalloutNotificationsDistributions.md +10 -0
  547. data/docs/ManagementProjectsCreateRequestBodyWebhooksCalloutNotificationsWebhooks.md +10 -0
  548. data/docs/ManagementProjectsCreateResponseBody.md +30 -0
  549. data/docs/ManagementProjectsCreateResponseBodyApiUsageNotifications.md +13 -0
  550. data/docs/ManagementProjectsCreateResponseBodyClientSideKey.md +9 -0
  551. data/docs/ManagementProjectsCreateResponseBodyServerSideKey.md +9 -0
  552. data/docs/ManagementProjectsCreateResponseBodyWebhooksCalloutNotifications.md +9 -0
  553. data/docs/ManagementProjectsCreateResponseBodyWebhooksCalloutNotificationsDistributions.md +10 -0
  554. data/docs/ManagementProjectsCreateResponseBodyWebhooksCalloutNotificationsWebhooks.md +10 -0
  555. data/docs/ManagementProjectsCustomEventSchema.md +13 -0
  556. data/docs/ManagementProjectsCustomEventSchemaSchema.md +8 -0
  557. data/docs/ManagementProjectsCustomEventSchemasCreateRequestBody.md +9 -0
  558. data/docs/ManagementProjectsCustomEventSchemasCreateRequestBodySchema.md +8 -0
  559. data/docs/ManagementProjectsCustomEventSchemasCreateRequestBodySchemaPropertiesEntry.md +10 -0
  560. data/docs/ManagementProjectsCustomEventSchemasCreateResponseBody.md +13 -0
  561. data/docs/ManagementProjectsCustomEventSchemasCreateResponseBodySchema.md +8 -0
  562. data/docs/ManagementProjectsCustomEventSchemasGetResponseBody.md +13 -0
  563. data/docs/ManagementProjectsCustomEventSchemasGetResponseBodySchema.md +8 -0
  564. data/docs/ManagementProjectsCustomEventSchemasListResponseBody.md +11 -0
  565. data/docs/ManagementProjectsCustomEventSchemasUpdateRequestBody.md +8 -0
  566. data/docs/ManagementProjectsCustomEventSchemasUpdateRequestBodySchema.md +8 -0
  567. data/docs/ManagementProjectsCustomEventSchemasUpdateResponseBody.md +13 -0
  568. data/docs/ManagementProjectsCustomEventSchemasUpdateResponseBodySchema.md +8 -0
  569. data/docs/ManagementProjectsGetResponseBody.md +30 -0
  570. data/docs/ManagementProjectsGetResponseBodyApiUsageNotifications.md +13 -0
  571. data/docs/ManagementProjectsGetResponseBodyDefaultCodeConfig.md +8 -0
  572. data/docs/ManagementProjectsGetResponseBodyLimits.md +9 -0
  573. data/docs/ManagementProjectsGetResponseBodyLimitsApiCallsItem.md +9 -0
  574. data/docs/ManagementProjectsGetResponseBodyLimitsBulkApiCallsItem.md +9 -0
  575. data/docs/ManagementProjectsGetResponseBodyWebhooksCalloutNotifications.md +9 -0
  576. data/docs/ManagementProjectsGetResponseBodyWebhooksCalloutNotificationsDistributions.md +10 -0
  577. data/docs/ManagementProjectsGetResponseBodyWebhooksCalloutNotificationsWebhooks.md +10 -0
  578. data/docs/ManagementProjectsListResponseBody.md +11 -0
  579. data/docs/ManagementProjectsMetadataSchema.md +14 -0
  580. data/docs/ManagementProjectsMetadataSchemaDefinition.md +21 -0
  581. data/docs/ManagementProjectsMetadataSchemasCreateRequestBody.md +10 -0
  582. data/docs/ManagementProjectsMetadataSchemasCreateResponseBody.md +14 -0
  583. data/docs/ManagementProjectsMetadataSchemasGetResponseBody.md +14 -0
  584. data/docs/ManagementProjectsMetadataSchemasListResponseBody.md +11 -0
  585. data/docs/ManagementProjectsMetadataSchemasUpdateRequestBody.md +9 -0
  586. data/docs/ManagementProjectsMetadataSchemasUpdateResponseBody.md +14 -0
  587. data/docs/ManagementProjectsStackingRules.md +22 -0
  588. data/docs/ManagementProjectsStackingRulesCreateRequestBody.md +19 -0
  589. data/docs/ManagementProjectsStackingRulesCreateResponseBody.md +22 -0
  590. data/docs/ManagementProjectsStackingRulesGetResponseBody.md +22 -0
  591. data/docs/ManagementProjectsStackingRulesListResponseBody.md +11 -0
  592. data/docs/ManagementProjectsStackingRulesUpdateRequestBody.md +19 -0
  593. data/docs/ManagementProjectsStackingRulesUpdateResponseBody.md +22 -0
  594. data/docs/ManagementProjectsTemplatesCampaignsCopyCreateRequestBody.md +10 -0
  595. data/docs/ManagementProjectsTemplatesCampaignsCopyCreateResponseBody.md +13 -0
  596. data/docs/ManagementProjectsTemplatesCampaignsListResponseBody.md +13 -0
  597. data/docs/ManagementProjectsUpdateRequestBody.md +23 -0
  598. data/docs/ManagementProjectsUpdateRequestBodyApiUsageNotifications.md +12 -0
  599. data/docs/ManagementProjectsUpdateRequestBodyDefaultCodeConfig.md +8 -0
  600. data/docs/ManagementProjectsUpdateRequestBodyWebhooksCalloutNotifications.md +9 -0
  601. data/docs/ManagementProjectsUpdateRequestBodyWebhooksCalloutNotificationsDistributions.md +10 -0
  602. data/docs/ManagementProjectsUpdateRequestBodyWebhooksCalloutNotificationsWebhooks.md +10 -0
  603. data/docs/ManagementProjectsUpdateResponseBody.md +30 -0
  604. data/docs/ManagementProjectsUpdateResponseBodyApiUsageNotifications.md +13 -0
  605. data/docs/ManagementProjectsUpdateResponseBodyDefaultCodeConfig.md +8 -0
  606. data/docs/ManagementProjectsUpdateResponseBodyLimits.md +9 -0
  607. data/docs/ManagementProjectsUpdateResponseBodyLimitsApiCallsItem.md +9 -0
  608. data/docs/ManagementProjectsUpdateResponseBodyLimitsBulkApiCallsItem.md +9 -0
  609. data/docs/ManagementProjectsUpdateResponseBodyWebhooksCalloutNotifications.md +9 -0
  610. data/docs/ManagementProjectsUpdateResponseBodyWebhooksCalloutNotificationsDistributions.md +10 -0
  611. data/docs/ManagementProjectsUpdateResponseBodyWebhooksCalloutNotificationsWebhooks.md +10 -0
  612. data/docs/ManagementProjectsUsersAssignRequestBody.md +10 -0
  613. data/docs/ManagementProjectsUsersAssignResponseBody.md +14 -0
  614. data/docs/ManagementProjectsUsersGetUserResponseBody.md +14 -0
  615. data/docs/ManagementProjectsUsersInviteCreateRequestBody.md +11 -0
  616. data/docs/ManagementProjectsUsersListResponseBody.md +11 -0
  617. data/docs/ManagementProjectsUsersUpdateRoleRequestBody.md +8 -0
  618. data/docs/ManagementProjectsUsersUpdateRoleResponseBody.md +14 -0
  619. data/docs/ManagementProjectsWebhook.md +13 -0
  620. data/docs/ManagementProjectsWebhooksCreateRequestBody.md +10 -0
  621. data/docs/ManagementProjectsWebhooksCreateResponseBody.md +13 -0
  622. data/docs/ManagementProjectsWebhooksGetResponseBody.md +13 -0
  623. data/docs/ManagementProjectsWebhooksListResponseBody.md +11 -0
  624. data/docs/ManagementProjectsWebhooksUpdateRequestBody.md +10 -0
  625. data/docs/ManagementProjectsWebhooksUpdateResponseBody.md +13 -0
  626. data/docs/MappingPoints.md +6 -45
  627. data/docs/MemberActivity.md +12 -0
  628. data/docs/MetadataSchemaDefinitionDeprecated.md +21 -0
  629. data/docs/MetadataSchemaDeprecated.md +14 -0
  630. data/docs/MetadataSchemasApi.md +122 -0
  631. data/docs/MetadataSchemasGetResponseBody.md +14 -0
  632. data/docs/MetadataSchemasListResponseBody.md +11 -0
  633. data/docs/Order.md +5 -9
  634. data/docs/OrderCalculated.md +10 -10
  635. data/docs/OrderCalculatedItem.md +28 -0
  636. data/docs/OrderCalculatedItemProduct.md +13 -0
  637. data/docs/OrderCalculatedItemSku.md +12 -0
  638. data/docs/OrderItem.md +5 -5
  639. data/docs/OrderItemProduct.md +2 -2
  640. data/docs/OrderItemSku.md +1 -1
  641. data/docs/OrderRedemptionsEntry.md +15 -0
  642. data/docs/OrdersApi.md +4 -4
  643. data/docs/OrdersCreateRequestBody.md +6 -6
  644. data/docs/OrdersCreateResponseBody.md +10 -10
  645. data/docs/OrdersExportCreateResponseBody.md +8 -8
  646. data/docs/OrdersExportCreateResponseBodyParameters.md +10 -0
  647. data/docs/OrdersGetResponseBody.md +8 -8
  648. data/docs/OrdersImportCreateRequestBodyItem.md +8 -7
  649. data/docs/OrdersImportCreateResponseBody.md +1 -1
  650. data/docs/OrdersListResponseBody.md +4 -4
  651. data/docs/OrdersUpdateRequestBody.md +7 -6
  652. data/docs/OrdersUpdateResponseBody.md +10 -10
  653. data/docs/ParameterActivityCategory.md +7 -0
  654. data/docs/ParameterCreatedBeforeAfter.md +2 -2
  655. data/docs/ParameterFiltersListBin.md +12 -0
  656. data/docs/ParameterFiltersListBinId.md +8 -0
  657. data/docs/ParameterFiltersListBinResourceId.md +8 -0
  658. data/docs/ParameterFiltersListBinResourceName.md +8 -0
  659. data/docs/ParameterFiltersListBinResourceType.md +8 -0
  660. data/docs/ParameterFiltersListBinResourceTypeConditions.md +15 -0
  661. data/docs/ParameterFiltersListCampaigns.md +14 -0
  662. data/docs/ParameterFiltersListCampaignsCampaignStatus.md +8 -0
  663. data/docs/ParameterFiltersListCampaignsCampaignStatusConditions.md +15 -0
  664. data/docs/ParameterFiltersListCampaignsCategories.md +8 -0
  665. data/docs/ParameterFiltersListCampaignsCategoryIds.md +8 -0
  666. data/docs/ParameterFiltersListCampaignsIsReferralCode.md +9 -0
  667. data/docs/ParameterFiltersListCampaignsValidityTimeframe.md +8 -0
  668. data/docs/ParameterFiltersListCampaignsVoucherType.md +8 -0
  669. data/docs/ParameterFiltersListCustomerRedeemables.md +16 -0
  670. data/docs/ParameterFiltersListCustomerRedeemablesCampaignId.md +8 -0
  671. data/docs/ParameterFiltersListCustomerRedeemablesCampaignType.md +8 -0
  672. data/docs/ParameterFiltersListCustomerRedeemablesCampaignTypeConditions.md +15 -0
  673. data/docs/ParameterFiltersListCustomerRedeemablesCreatedAt.md +8 -0
  674. data/docs/ParameterFiltersListCustomerRedeemablesHolderRole.md +8 -0
  675. data/docs/ParameterFiltersListCustomerRedeemablesHolderRoleConditions.md +15 -0
  676. data/docs/ParameterFiltersListCustomerRedeemablesId.md +8 -0
  677. data/docs/ParameterFiltersListCustomerRedeemablesRedeemableId.md +8 -0
  678. data/docs/ParameterFiltersListCustomerRedeemablesRedeemableObject.md +8 -0
  679. data/docs/ParameterFiltersListCustomerRedeemablesRedeemableObjectConditions.md +15 -0
  680. data/docs/ParameterFiltersListCustomerRedeemablesVoucherType.md +8 -0
  681. data/docs/ParameterFiltersListCustomerRedeemablesVoucherTypeConditions.md +15 -0
  682. data/docs/ParameterFiltersListLocations.md +10 -0
  683. data/docs/ParameterFiltersListLocationsCreatedAt.md +8 -0
  684. data/docs/ParameterFiltersListLocationsName.md +8 -0
  685. data/docs/ParameterFiltersListLocationsUpdatedAt.md +8 -0
  686. data/docs/ParameterFiltersListPublications.md +17 -0
  687. data/docs/ParameterFiltersListPublicationsCampaignName.md +8 -0
  688. data/docs/ParameterFiltersListPublicationsCustomerId.md +8 -0
  689. data/docs/ParameterFiltersListPublicationsFailureCode.md +8 -0
  690. data/docs/ParameterFiltersListPublicationsIsReferralCode.md +8 -0
  691. data/docs/ParameterFiltersListPublicationsParentObjectId.md +8 -0
  692. data/docs/ParameterFiltersListPublicationsRelatedObjectId.md +8 -0
  693. data/docs/ParameterFiltersListPublicationsResult.md +8 -0
  694. data/docs/ParameterFiltersListPublicationsSourceId.md +8 -0
  695. data/docs/ParameterFiltersListPublicationsVoucherType.md +8 -0
  696. data/docs/ParameterFiltersListRedemptions.md +1 -0
  697. data/docs/ParameterFiltersListRedemptionsCampaignName.md +0 -1
  698. data/docs/ParameterFiltersListRedemptionsCustomerId.md +0 -1
  699. data/docs/ParameterFiltersListRedemptionsFailureCode.md +0 -1
  700. data/docs/ParameterFiltersListRedemptionsObject.md +0 -1
  701. data/docs/ParameterFiltersListRedemptionsParentRedemptionId.md +0 -1
  702. data/docs/ParameterFiltersListRedemptionsRelatedObjectId.md +0 -1
  703. data/docs/ParameterFiltersListRedemptionsRelatedObjectParentId.md +0 -1
  704. data/docs/ParameterFiltersListRedemptionsResult.md +0 -1
  705. data/docs/ParameterFiltersListRedemptionsUserLogin.md +0 -1
  706. data/docs/ParameterFiltersListRedemptionsVoucherCode.md +0 -1
  707. data/docs/ParameterFiltersListReferralsRedeemableHolders.md +12 -0
  708. data/docs/ParameterFiltersListReferralsRedeemableHoldersCreatedAt.md +8 -0
  709. data/docs/ParameterFiltersListReferralsRedeemableHoldersCustomerId.md +8 -0
  710. data/docs/ParameterFiltersListReferralsRedeemableHoldersHolderRole.md +8 -0
  711. data/docs/ParameterFiltersListReferralsRedeemableHoldersHolderRoleConditions.md +15 -0
  712. data/docs/ParameterFiltersListReferralsRedeemableHoldersId.md +8 -0
  713. data/docs/ParameterFiltersListTemplates.md +11 -0
  714. data/docs/ParameterFiltersListTemplatesCampaignType.md +8 -0
  715. data/docs/ParameterFiltersListTemplatesCampaignTypeConditions.md +15 -0
  716. data/docs/ParameterFiltersListTemplatesId.md +8 -0
  717. data/docs/ParameterFiltersListTemplatesName.md +8 -0
  718. data/docs/ParameterOrderCreatedAt.md +7 -0
  719. data/docs/ParameterOrderListBin.md +7 -0
  720. data/docs/ParameterOrderListEarningRules.md +7 -0
  721. data/docs/ParameterOrderListLocations.md +7 -0
  722. data/docs/ParameterOrderListPromotionTiers.md +7 -0
  723. data/docs/ParameterOrderListPromotionTiersClientSide.md +7 -0
  724. data/docs/ParameterOrderListRedeemables.md +7 -0
  725. data/docs/ParameterOrderListTransactions.md +7 -0
  726. data/docs/ParameterOrderVouchers.md +7 -0
  727. data/docs/ParameterTemplatesList.md +7 -0
  728. data/docs/ParameterUpdatedBeforeAfter.md +2 -2
  729. data/docs/Product.md +9 -9
  730. data/docs/ProductCollectionsApi.md +9 -9
  731. data/docs/ProductCollectionsCreateRequestBody.md +8 -46
  732. data/docs/ProductCollectionsCreateRequestBodyProductsItem.md +10 -0
  733. data/docs/ProductCollectionsCreateResponseBody.md +7 -7
  734. data/docs/ProductCollectionsCreateResponseBodyProductsItem.md +10 -0
  735. data/docs/ProductCollectionsGetResponseBody.md +7 -7
  736. data/docs/ProductCollectionsGetResponseBodyProductsItem.md +10 -0
  737. data/docs/ProductCollectionsItem.md +6 -6
  738. data/docs/ProductCollectionsItemProductsItem.md +1 -1
  739. data/docs/ProductCollectionsListResponseBody.md +4 -4
  740. data/docs/ProductCollectionsProductsListResponseBody.md +4 -4
  741. data/docs/ProductCollectionsProductsListResponseBodyDataItem.md +21 -0
  742. data/docs/ProductWithoutSkus.md +9 -9
  743. data/docs/ProductsApi.md +38 -34
  744. data/docs/ProductsCreateResponseBody.md +9 -9
  745. data/docs/ProductsGetResponseBody.md +9 -9
  746. data/docs/ProductsImportCsvCreateResponseBody.md +1 -1
  747. data/docs/ProductsListResponseBody.md +4 -4
  748. data/docs/ProductsMetadataUpdateInBulkRequestBody.md +2 -2
  749. data/docs/ProductsMetadataUpdateInBulkResponseBody.md +1 -1
  750. data/docs/ProductsSkusCreateResponseBody.md +11 -11
  751. data/docs/ProductsSkusListResponseBody.md +4 -4
  752. data/docs/ProductsSkusUpdateResponseBody.md +11 -11
  753. data/docs/ProductsUpdateInBulkRequestBody.md +1 -1
  754. data/docs/ProductsUpdateInBulkResponseBody.md +1 -1
  755. data/docs/ProductsUpdateResponseBody.md +9 -9
  756. data/docs/PromotionStack.md +9 -9
  757. data/docs/PromotionStackBase.md +2 -2
  758. data/docs/PromotionStackBaseTiers.md +1 -1
  759. data/docs/PromotionStackTiers.md +9 -0
  760. data/docs/PromotionTier.md +6 -5
  761. data/docs/PromotionTierCampaign.md +4 -3
  762. data/docs/PromotionTierCreateParams.md +5 -4
  763. data/docs/PromotionTierCreateParamsAction.md +8 -0
  764. data/docs/PromotionTiersList.md +2 -2
  765. data/docs/PromotionsApi.md +198 -5
  766. data/docs/PromotionsStacksCreateRequestBody.md +2 -2
  767. data/docs/PromotionsStacksCreateRequestBodyTiers.md +9 -0
  768. data/docs/PromotionsStacksCreateResponseBody.md +8 -8
  769. data/docs/PromotionsStacksCreateResponseBodyTiers.md +9 -0
  770. data/docs/PromotionsStacksGetResponseBody.md +9 -9
  771. data/docs/PromotionsStacksGetResponseBodyTiers.md +9 -0
  772. data/docs/PromotionsStacksListResponseBody.md +4 -4
  773. data/docs/PromotionsStacksUpdateRequestBodyTiers.md +1 -1
  774. data/docs/PromotionsStacksUpdateResponseBody.md +9 -9
  775. data/docs/PromotionsStacksUpdateResponseBodyTiers.md +9 -0
  776. data/docs/PromotionsTiersCreateRequestBody.md +21 -0
  777. data/docs/PromotionsTiersCreateRequestBodyAction.md +8 -0
  778. data/docs/PromotionsTiersCreateResponseBody.md +29 -0
  779. data/docs/PromotionsTiersCreateResponseBodyAction.md +8 -0
  780. data/docs/PromotionsTiersCreateResponseBodyCampaign.md +16 -0
  781. data/docs/PromotionsTiersCreateResponseBodySummary.md +9 -0
  782. data/docs/PromotionsTiersCreateResponseBodySummaryOrders.md +9 -0
  783. data/docs/PromotionsTiersCreateResponseBodySummaryRedemptions.md +8 -0
  784. data/docs/PromotionsTiersDisableResponseBody.md +9 -8
  785. data/docs/PromotionsTiersDisableResponseBodyAction.md +8 -0
  786. data/docs/PromotionsTiersDisableResponseBodyCampaign.md +16 -0
  787. data/docs/PromotionsTiersDisableResponseBodySummary.md +9 -0
  788. data/docs/PromotionsTiersDisableResponseBodySummaryOrders.md +9 -0
  789. data/docs/PromotionsTiersDisableResponseBodySummaryRedemptions.md +8 -0
  790. data/docs/PromotionsTiersEnableResponseBody.md +9 -8
  791. data/docs/PromotionsTiersEnableResponseBodyAction.md +8 -0
  792. data/docs/PromotionsTiersEnableResponseBodyCampaign.md +16 -0
  793. data/docs/PromotionsTiersEnableResponseBodySummary.md +9 -0
  794. data/docs/PromotionsTiersEnableResponseBodySummaryOrders.md +9 -0
  795. data/docs/PromotionsTiersEnableResponseBodySummaryRedemptions.md +8 -0
  796. data/docs/PromotionsTiersGetResponseBody.md +9 -8
  797. data/docs/PromotionsTiersGetResponseBodyAction.md +8 -0
  798. data/docs/PromotionsTiersGetResponseBodyCampaign.md +16 -0
  799. data/docs/PromotionsTiersGetResponseBodySummary.md +9 -0
  800. data/docs/PromotionsTiersGetResponseBodySummaryOrders.md +9 -0
  801. data/docs/PromotionsTiersGetResponseBodySummaryRedemptions.md +8 -0
  802. data/docs/PromotionsTiersListResponseBody.md +2 -2
  803. data/docs/PromotionsTiersUpdateRequestBody.md +20 -0
  804. data/docs/PromotionsTiersUpdateRequestBodyAction.md +8 -0
  805. data/docs/PromotionsTiersUpdateResponseBody.md +29 -0
  806. data/docs/PromotionsTiersUpdateResponseBodyAction.md +8 -0
  807. data/docs/PromotionsTiersUpdateResponseBodyCampaign.md +16 -0
  808. data/docs/PromotionsTiersUpdateResponseBodySummary.md +9 -0
  809. data/docs/PromotionsTiersUpdateResponseBodySummaryOrders.md +9 -0
  810. data/docs/PromotionsTiersUpdateResponseBodySummaryRedemptions.md +8 -0
  811. data/docs/PublicationsApi.md +10 -10
  812. data/docs/PublicationsCreateRequestBody.md +10 -46
  813. data/docs/PublicationsCreateResponseBody.md +17 -46
  814. data/docs/PublicationsListResponseBody.md +4 -4
  815. data/docs/PublicationsListResponseBodyPublicationsItem.md +19 -48
  816. data/docs/PublicationsListResponseBodyPublicationsItemMetadata.md +10 -0
  817. data/docs/QualificationsApi.md +1 -1
  818. data/docs/QualificationsCheckEligibilityRequestBody.md +1 -2
  819. data/docs/QualificationsFiltersCondition.md +6 -6
  820. data/docs/QualificationsOption.md +1 -1
  821. data/docs/QualificationsOptionFilters.md +2 -0
  822. data/docs/QualificationsOptionFiltersCampaignType.md +8 -0
  823. data/docs/QualificationsOptionFiltersCampaignTypeConditions.md +11 -0
  824. data/docs/QualificationsOptionFiltersHolderRole.md +8 -0
  825. data/docs/QualificationsOptionFiltersHolderRoleConditions.md +11 -0
  826. data/docs/QualificationsOptionFiltersResourceTypeConditions.md +4 -4
  827. data/docs/QualificationsRedeemable.md +2 -2
  828. data/docs/QualificationsRedeemableBase.md +2 -2
  829. data/docs/QualificationsRedeemables.md +6 -6
  830. data/docs/RedeemableHolder.md +18 -0
  831. data/docs/RedeemableLoyaltyCard.md +1 -1
  832. data/docs/RedeemableVoucher.md +35 -0
  833. data/docs/RedeemableVoucherGift.md +10 -0
  834. data/docs/RedeemableVoucherLoyaltyCard.md +11 -0
  835. data/docs/RedeemableVoucherPublish.md +10 -0
  836. data/docs/RedeemableVoucherRedemption.md +12 -0
  837. data/docs/Redemption.md +16 -16
  838. data/docs/RedemptionChannel.md +2 -2
  839. data/docs/RedemptionEntry.md +31 -0
  840. data/docs/RedemptionEntryChannel.md +9 -0
  841. data/docs/RedemptionEntryCustomer.md +13 -0
  842. data/docs/RedemptionEntryGift.md +8 -0
  843. data/docs/RedemptionEntryLoyaltyCard.md +8 -0
  844. data/docs/RedemptionEntryOrder.md +29 -0
  845. data/docs/RedemptionEntryOrderCustomer.md +9 -0
  846. data/docs/RedemptionEntryOrderReferrer.md +9 -0
  847. data/docs/RedemptionEntryPromotionTier.md +29 -0
  848. data/docs/RedemptionEntryPromotionTierAction.md +8 -0
  849. data/docs/RedemptionEntryPromotionTierCampaign.md +16 -0
  850. data/docs/RedemptionEntryPromotionTierSummary.md +9 -0
  851. data/docs/RedemptionEntryPromotionTierSummaryOrders.md +9 -0
  852. data/docs/RedemptionEntryPromotionTierSummaryRedemptions.md +8 -0
  853. data/docs/RedemptionEntryRelatedRedemptions.md +9 -0
  854. data/docs/RedemptionEntryRelatedRedemptionsRedemptionsItem.md +9 -0
  855. data/docs/RedemptionEntryRelatedRedemptionsRollbacksItem.md +9 -0
  856. data/docs/RedemptionEntryVoucher.md +37 -0
  857. data/docs/RedemptionEntryVoucherGift.md +10 -0
  858. data/docs/RedemptionEntryVoucherLoyaltyCard.md +11 -0
  859. data/docs/RedemptionEntryVoucherPublish.md +10 -0
  860. data/docs/RedemptionEntryVoucherRedemption.md +12 -0
  861. data/docs/RedemptionGift.md +1 -1
  862. data/docs/RedemptionLoyaltyCard.md +1 -1
  863. data/docs/RedemptionRelatedRedemptions.md +1 -1
  864. data/docs/RedemptionRelatedRedemptionsRedemptionsItem.md +9 -0
  865. data/docs/RedemptionRelatedRedemptionsRollbacksItem.md +1 -1
  866. data/docs/RedemptionRewardResult.md +9 -8
  867. data/docs/RedemptionRewardResultParametersProduct.md +1 -1
  868. data/docs/RedemptionRollback.md +17 -17
  869. data/docs/RedemptionRollbackChannel.md +9 -0
  870. data/docs/RedemptionRollbackGift.md +8 -0
  871. data/docs/RedemptionRollbackLoyaltyCard.md +8 -0
  872. data/docs/RedemptionRollbackRelatedRedemptions.md +1 -1
  873. data/docs/RedemptionRollbackRelatedRedemptionsRedemptionsItem.md +9 -0
  874. data/docs/RedemptionRollbackRelatedRedemptionsRollbacksItem.md +2 -2
  875. data/docs/RedemptionVoucher.md +37 -0
  876. data/docs/RedemptionVoucherGift.md +10 -0
  877. data/docs/RedemptionVoucherLoyaltyCard.md +11 -0
  878. data/docs/RedemptionVoucherPublish.md +10 -0
  879. data/docs/RedemptionVoucherRedemption.md +12 -0
  880. data/docs/RedemptionsApi.md +7 -7
  881. data/docs/RedemptionsGetResponseBody.md +28 -46
  882. data/docs/RedemptionsGetResponseBodyChannel.md +9 -0
  883. data/docs/RedemptionsGetResponseBodyCustomer.md +13 -0
  884. data/docs/RedemptionsGetResponseBodyGift.md +8 -0
  885. data/docs/RedemptionsGetResponseBodyLoyaltyCard.md +8 -0
  886. data/docs/RedemptionsGetResponseBodyOrder.md +29 -0
  887. data/docs/RedemptionsGetResponseBodyOrderCustomer.md +9 -0
  888. data/docs/RedemptionsGetResponseBodyOrderReferrer.md +9 -0
  889. data/docs/RedemptionsGetResponseBodyPromotionTier.md +29 -0
  890. data/docs/RedemptionsGetResponseBodyPromotionTierAction.md +8 -0
  891. data/docs/RedemptionsGetResponseBodyPromotionTierCampaign.md +16 -0
  892. data/docs/RedemptionsGetResponseBodyPromotionTierSummary.md +9 -0
  893. data/docs/RedemptionsGetResponseBodyPromotionTierSummaryOrders.md +9 -0
  894. data/docs/RedemptionsGetResponseBodyPromotionTierSummaryRedemptions.md +8 -0
  895. data/docs/RedemptionsGetResponseBodyRelatedRedemptions.md +9 -0
  896. data/docs/RedemptionsGetResponseBodyRelatedRedemptionsRedemptionsItem.md +9 -0
  897. data/docs/RedemptionsGetResponseBodyRelatedRedemptionsRollbacksItem.md +9 -0
  898. data/docs/RedemptionsGetResponseBodyVoucher.md +37 -0
  899. data/docs/RedemptionsGetResponseBodyVoucherGift.md +10 -0
  900. data/docs/RedemptionsGetResponseBodyVoucherLoyaltyCard.md +11 -0
  901. data/docs/RedemptionsGetResponseBodyVoucherPublish.md +10 -0
  902. data/docs/RedemptionsGetResponseBodyVoucherRedemption.md +12 -0
  903. data/docs/RedemptionsListResponseBody.md +4 -4
  904. data/docs/RedemptionsListResponseBodyRedemptionsItem.md +28 -46
  905. data/docs/RedemptionsListResponseBodyRedemptionsItemChannel.md +9 -0
  906. data/docs/RedemptionsListResponseBodyRedemptionsItemCustomer.md +13 -0
  907. data/docs/RedemptionsListResponseBodyRedemptionsItemGift.md +8 -0
  908. data/docs/RedemptionsListResponseBodyRedemptionsItemLoyaltyCard.md +8 -0
  909. data/docs/RedemptionsListResponseBodyRedemptionsItemOrder.md +29 -0
  910. data/docs/RedemptionsListResponseBodyRedemptionsItemOrderCustomer.md +9 -0
  911. data/docs/RedemptionsListResponseBodyRedemptionsItemOrderReferrer.md +9 -0
  912. data/docs/RedemptionsListResponseBodyRedemptionsItemPromotionTier.md +29 -0
  913. data/docs/RedemptionsListResponseBodyRedemptionsItemPromotionTierAction.md +8 -0
  914. data/docs/RedemptionsListResponseBodyRedemptionsItemPromotionTierCampaign.md +16 -0
  915. data/docs/RedemptionsListResponseBodyRedemptionsItemPromotionTierSummary.md +9 -0
  916. data/docs/RedemptionsListResponseBodyRedemptionsItemPromotionTierSummaryOrders.md +9 -0
  917. data/docs/RedemptionsListResponseBodyRedemptionsItemPromotionTierSummaryRedemptions.md +8 -0
  918. data/docs/RedemptionsListResponseBodyRedemptionsItemRelatedRedemptions.md +9 -0
  919. data/docs/RedemptionsListResponseBodyRedemptionsItemRelatedRedemptionsRedemptionsItem.md +9 -0
  920. data/docs/RedemptionsListResponseBodyRedemptionsItemRelatedRedemptionsRollbacksItem.md +9 -0
  921. data/docs/RedemptionsListResponseBodyRedemptionsItemVoucher.md +37 -0
  922. data/docs/RedemptionsListResponseBodyRedemptionsItemVoucherGift.md +10 -0
  923. data/docs/RedemptionsListResponseBodyRedemptionsItemVoucherLoyaltyCard.md +11 -0
  924. data/docs/RedemptionsListResponseBodyRedemptionsItemVoucherPublish.md +10 -0
  925. data/docs/RedemptionsListResponseBodyRedemptionsItemVoucherRedemption.md +12 -0
  926. data/docs/RedemptionsRedeemRequestBody.md +2 -2
  927. data/docs/RedemptionsRedeemRequestBodyOptions.md +8 -0
  928. data/docs/RedemptionsRedeemRequestBodyRedeemablesItem.md +11 -0
  929. data/docs/RedemptionsRedeemRequestBodyRedeemablesItemGift.md +8 -0
  930. data/docs/RedemptionsRedeemRequestBodyRedeemablesItemReward.md +9 -0
  931. data/docs/RedemptionsRollbackCreateResponseBody.md +18 -18
  932. data/docs/RedemptionsRollbackCreateResponseBodyChannel.md +9 -0
  933. data/docs/RedemptionsRollbackCreateResponseBodyGift.md +8 -0
  934. data/docs/RedemptionsRollbackCreateResponseBodyLoyaltyCard.md +8 -0
  935. data/docs/RedemptionsRollbackCreateResponseBodyRelatedRedemptions.md +9 -0
  936. data/docs/RedemptionsRollbackCreateResponseBodyRelatedRedemptionsRedemptionsItem.md +9 -0
  937. data/docs/RedemptionsRollbackCreateResponseBodyRelatedRedemptionsRollbacksItem.md +9 -0
  938. data/docs/RedemptionsRollbacksCreateResponseBody.md +1 -1
  939. data/docs/ReferralsApi.md +397 -0
  940. data/docs/ReferralsMembersHoldersCreateInBulkRequestBody.md +9 -0
  941. data/docs/ReferralsMembersHoldersCreateInBulkResponseBody.md +8 -0
  942. data/docs/ReferralsMembersHoldersListResponseBody.md +13 -0
  943. data/docs/Referrer.md +2 -2
  944. data/docs/ReferrerAddress.md +13 -0
  945. data/docs/ReferrerId.md +2 -2
  946. data/docs/Reward.md +9 -9
  947. data/docs/RewardAssignment.md +8 -8
  948. data/docs/RewardAssignmentParameters.md +1 -1
  949. data/docs/RewardAssignmentParametersLoyalty.md +9 -0
  950. data/docs/RewardType.md +6 -47
  951. data/docs/RewardTypeCampaign.md +3 -1
  952. data/docs/RewardTypeCoin.md +2 -1
  953. data/docs/RewardTypeProduct.md +9 -0
  954. data/docs/RewardsApi.md +253 -5
  955. data/docs/RewardsAssignmentsCreateRequestBody.md +6 -45
  956. data/docs/RewardsAssignmentsCreateRequestBodyParameters.md +8 -0
  957. data/docs/RewardsAssignmentsCreateRequestBodyParametersLoyalty.md +9 -0
  958. data/docs/RewardsAssignmentsCreateResponseBody.md +8 -8
  959. data/docs/RewardsAssignmentsCreateResponseBodyParameters.md +8 -0
  960. data/docs/RewardsAssignmentsCreateResponseBodyParametersLoyalty.md +9 -0
  961. data/docs/RewardsAssignmentsGetResponseBody.md +8 -8
  962. data/docs/RewardsAssignmentsGetResponseBodyParameters.md +8 -0
  963. data/docs/RewardsAssignmentsGetResponseBodyParametersLoyalty.md +9 -0
  964. data/docs/RewardsAssignmentsListResponseBody.md +4 -4
  965. data/docs/RewardsAssignmentsUpdateRequestBodyParametersLoyalty.md +1 -0
  966. data/docs/RewardsAssignmentsUpdateResponseBody.md +8 -8
  967. data/docs/RewardsAssignmentsUpdateResponseBodyParameters.md +8 -0
  968. data/docs/RewardsAssignmentsUpdateResponseBodyParametersLoyalty.md +9 -0
  969. data/docs/RewardsCreateRequestBody.md +12 -0
  970. data/docs/RewardsCreateRequestBodyAttributes.md +9 -0
  971. data/docs/RewardsCreateRequestBodyParameters.md +10 -0
  972. data/docs/RewardsCreateRequestBodyParametersCampaign.md +9 -0
  973. data/docs/RewardsCreateRequestBodyParametersCoin.md +9 -0
  974. data/docs/RewardsCreateRequestBodyParametersProduct.md +9 -0
  975. data/docs/RewardsCreateResponseBody.md +18 -0
  976. data/docs/RewardsCreateResponseBodyAttributes.md +9 -0
  977. data/docs/RewardsListResponseBody.md +11 -0
  978. data/docs/RewardsUpdateRequestBody.md +12 -0
  979. data/docs/RewardsUpdateRequestBodyAttributes.md +9 -0
  980. data/docs/RewardsUpdateRequestBodyParameters.md +10 -0
  981. data/docs/RewardsUpdateRequestBodyParametersCampaign.md +9 -0
  982. data/docs/RewardsUpdateRequestBodyParametersCoin.md +9 -0
  983. data/docs/RewardsUpdateRequestBodyParametersProduct.md +9 -0
  984. data/docs/RewardsUpdateResponseBody.md +18 -0
  985. data/docs/RewardsUpdateResponseBodyAttributes.md +9 -0
  986. data/docs/SegmentsApi.md +120 -0
  987. data/docs/SegmentsCreateRequestBody.md +11 -0
  988. data/docs/SegmentsCreateResponseBody.md +14 -0
  989. data/docs/SegmentsGetResponseBody.md +14 -0
  990. data/docs/Session.md +2 -2
  991. data/docs/SimpleCustomer.md +4 -4
  992. data/docs/SimpleCustomerRequiredObjectType.md +2 -2
  993. data/docs/SimpleLoyaltyCard.md +11 -0
  994. data/docs/SimpleProductDiscountUnit.md +2 -2
  995. data/docs/SimpleSegment.md +3 -3
  996. data/docs/SimpleSkuDiscountUnit.md +2 -2
  997. data/docs/SimpleVoucher.md +16 -8
  998. data/docs/SimpleVoucherRedemption.md +9 -0
  999. data/docs/Sku.md +11 -11
  1000. data/docs/SkusGetResponseBody.md +11 -11
  1001. data/docs/SkusImportCsvCreateResponseBody.md +1 -1
  1002. data/docs/SkusListForProduct.md +4 -4
  1003. data/docs/StackingRules.md +8 -5
  1004. data/docs/TemplatesApi.md +443 -0
  1005. data/docs/TemplatesCampaignsCampaignSetupCreateRequestBody.md +24 -0
  1006. data/docs/TemplatesCampaignsCampaignSetupCreateRequestBodyVoucher.md +9 -0
  1007. data/docs/TemplatesCampaignsCampaignSetupCreateRequestBodyVoucherRedemption.md +8 -0
  1008. data/docs/TemplatesCampaignsCampaignSetupCreateResponseBody.md +10 -0
  1009. data/docs/TemplatesCampaignsCampaignSetupCreateResponseBodyCreatedResourcesItem.md +9 -0
  1010. data/docs/TemplatesCampaignsCreateRequestBody.md +11 -0
  1011. data/docs/TemplatesCampaignsCreateTemplateResponseBody.md +13 -0
  1012. data/docs/TemplatesCampaignsGetResponseBody.md +14 -0
  1013. data/docs/TemplatesCampaignsListResponseBody.md +13 -0
  1014. data/docs/TemplatesCampaignsTierSetupCreateRequestBody.md +20 -0
  1015. data/docs/TemplatesCampaignsTierSetupCreateResponseBody.md +10 -0
  1016. data/docs/TemplatesCampaignsTierSetupCreateResponseBodyCreatedResourcesItem.md +9 -0
  1017. data/docs/TemplatesCampaignsUpdateRequestBody.md +9 -0
  1018. data/docs/TemplatesCampaignsUpdateResponseBody.md +14 -0
  1019. data/docs/TrashBinItem.md +15 -0
  1020. data/docs/TrashBinListResponseBody.md +13 -0
  1021. data/docs/UsageNotifications.md +11 -0
  1022. data/docs/User.md +14 -0
  1023. data/docs/ValidationRule.md +10 -10
  1024. data/docs/ValidationRuleApplicableTo.md +10 -0
  1025. data/docs/ValidationRuleAssignment.md +6 -6
  1026. data/docs/ValidationRuleAssignmentsList.md +4 -4
  1027. data/docs/ValidationRuleError.md +8 -0
  1028. data/docs/ValidationRulesApi.md +13 -13
  1029. data/docs/ValidationRulesAssignmentsCreateRequestBody.md +2 -2
  1030. data/docs/ValidationRulesAssignmentsCreateResponseBody.md +6 -6
  1031. data/docs/ValidationRulesAssignmentsList.md +4 -4
  1032. data/docs/ValidationRulesAssignmentsListResponseBody.md +4 -4
  1033. data/docs/ValidationRulesCreateRequestBody.md +4 -4
  1034. data/docs/ValidationRulesCreateRequestBodyApplicableTo.md +10 -0
  1035. data/docs/ValidationRulesCreateRequestBodyError.md +8 -0
  1036. data/docs/ValidationRulesCreateResponseBody.md +10 -10
  1037. data/docs/ValidationRulesCreateResponseBodyApplicableTo.md +10 -0
  1038. data/docs/ValidationRulesCreateResponseBodyError.md +8 -0
  1039. data/docs/ValidationRulesGetResponseBody.md +10 -10
  1040. data/docs/ValidationRulesGetResponseBodyApplicableTo.md +10 -0
  1041. data/docs/ValidationRulesGetResponseBodyError.md +8 -0
  1042. data/docs/ValidationRulesListResponseBody.md +4 -4
  1043. data/docs/ValidationRulesUpdateRequestBody.md +3 -3
  1044. data/docs/ValidationRulesUpdateRequestBodyApplicableTo.md +10 -0
  1045. data/docs/ValidationRulesUpdateRequestBodyError.md +8 -0
  1046. data/docs/ValidationRulesUpdateResponseBody.md +10 -10
  1047. data/docs/ValidationRulesUpdateResponseBodyApplicableTo.md +10 -0
  1048. data/docs/ValidationRulesUpdateResponseBodyError.md +8 -0
  1049. data/docs/ValidationsApi.md +1 -1
  1050. data/docs/ValidationsRedeemableInapplicable.md +2 -0
  1051. data/docs/ValidationsRedeemableInapplicableResult.md +1 -0
  1052. data/docs/ValidationsRedeemableInapplicableResultDetails.md +9 -0
  1053. data/docs/ValidationsRedeemableSkipped.md +3 -1
  1054. data/docs/ValidationsRedeemableSkippedResult.md +8 -0
  1055. data/docs/ValidationsRedeemableSkippedResultDetails.md +9 -0
  1056. data/docs/ValidationsValidateRequestBody.md +2 -2
  1057. data/docs/ValidationsValidateRequestBodyOptions.md +8 -0
  1058. data/docs/ValidationsValidateRequestBodyRedeemablesItem.md +11 -0
  1059. data/docs/ValidationsValidateRequestBodyRedeemablesItemGift.md +8 -0
  1060. data/docs/ValidationsValidateRequestBodyRedeemablesItemReward.md +9 -0
  1061. data/docs/ValidationsValidateResponseBody.md +4 -3
  1062. data/docs/ValidationsValidateResponseBodyRedeemablesItem.md +16 -0
  1063. data/docs/ValidationsValidateResponseBodyRedeemablesItemResult.md +12 -0
  1064. data/docs/ValidationsValidateResponseBodyRedeemablesItemResultDetails.md +9 -0
  1065. data/docs/ValidationsValidateResponseBodyRedeemablesItemResultDiscount.md +24 -0
  1066. data/docs/ValidationsValidateResponseBodyRedeemablesItemResultDiscountProduct.md +10 -0
  1067. data/docs/ValidationsValidateResponseBodyRedeemablesItemResultGift.md +8 -0
  1068. data/docs/ValidationsValidateResponseBodyRedeemablesItemResultLoyaltyCard.md +8 -0
  1069. data/docs/ValidityHours.md +8 -0
  1070. data/docs/ValidityHoursDailyItem.md +10 -0
  1071. data/docs/ValidityTimeframe.md +9 -0
  1072. data/docs/Voucher.md +9 -10
  1073. data/docs/VoucherAssets.md +2 -2
  1074. data/docs/VoucherAssetsBarcode.md +9 -0
  1075. data/docs/VoucherAssetsQr.md +9 -0
  1076. data/docs/VoucherLoyaltyCard.md +1 -1
  1077. data/docs/VoucherPublish.md +2 -2
  1078. data/docs/VoucherRedemption.md +2 -3
  1079. data/docs/VoucherTransaction.md +9 -9
  1080. data/docs/VoucherTransactionDetailsBalance.md +6 -6
  1081. data/docs/VoucherTransactionDetailsBalanceRelatedObject.md +2 -2
  1082. data/docs/VoucherTransactionDetailsCustomEvent.md +2 -2
  1083. data/docs/VoucherTransactionDetailsEarningRule.md +2 -2
  1084. data/docs/VoucherTransactionDetailsEarningRuleSource.md +1 -1
  1085. data/docs/VoucherTransactionDetailsEvent.md +2 -2
  1086. data/docs/VoucherTransactionDetailsEventSchema.md +2 -2
  1087. data/docs/VoucherTransactionDetailsLoyaltyTier.md +2 -2
  1088. data/docs/VoucherTransactionDetailsOrder.md +2 -2
  1089. data/docs/VoucherTransactionDetailsRedemption.md +1 -1
  1090. data/docs/VoucherTransactionDetailsReward.md +2 -2
  1091. data/docs/VoucherTransactionDetailsRollback.md +1 -1
  1092. data/docs/VoucherTransactionDetailsSegment.md +2 -2
  1093. data/docs/VoucherTransactionsExportFilterConditions.md +1 -1
  1094. data/docs/VoucherTransactionsExportFilterConditionsVoucherId.md +1 -1
  1095. data/docs/VoucherTransactionsExportFilterConditionsVoucherIdConditions.md +1 -1
  1096. data/docs/VoucherTransactionsExportParameters.md +1 -1
  1097. data/docs/VoucherTransactionsFilters.md +1 -1
  1098. data/docs/VoucherWithCategories.md +35 -0
  1099. data/docs/VoucherWithCategoriesGift.md +10 -0
  1100. data/docs/VoucherWithCategoriesLoyaltyCard.md +11 -0
  1101. data/docs/VoucherWithCategoriesPublish.md +10 -0
  1102. data/docs/VoucherWithCategoriesRedemption.md +12 -0
  1103. data/docs/VouchersApi.md +459 -12
  1104. data/docs/VouchersBalanceUpdateRequestBody.md +2 -2
  1105. data/docs/VouchersBalanceUpdateResponseBody.md +7 -7
  1106. data/docs/VouchersBalanceUpdateResponseBodyRelatedObject.md +2 -2
  1107. data/docs/VouchersCreateResponseBody.md +36 -0
  1108. data/docs/VouchersCreateResponseBodyGift.md +10 -0
  1109. data/docs/VouchersCreateResponseBodyLoyaltyCard.md +11 -0
  1110. data/docs/VouchersCreateResponseBodyPublish.md +10 -0
  1111. data/docs/VouchersCreateResponseBodyRedemption.md +12 -0
  1112. data/docs/VouchersCreateWithSpecificCodeRequestBody.md +25 -0
  1113. data/docs/VouchersCreateWithSpecificCodeRequestBodyRedemption.md +8 -0
  1114. data/docs/VouchersDisableResponseBody.md +12 -13
  1115. data/docs/VouchersDisableResponseBodyGift.md +10 -0
  1116. data/docs/VouchersDisableResponseBodyLoyaltyCard.md +11 -0
  1117. data/docs/VouchersDisableResponseBodyPublish.md +10 -0
  1118. data/docs/VouchersDisableResponseBodyRedemption.md +12 -0
  1119. data/docs/VouchersEnableResponseBody.md +12 -13
  1120. data/docs/VouchersEnableResponseBodyGift.md +10 -0
  1121. data/docs/VouchersEnableResponseBodyLoyaltyCard.md +11 -0
  1122. data/docs/VouchersEnableResponseBodyPublish.md +10 -0
  1123. data/docs/VouchersEnableResponseBodyRedemption.md +12 -0
  1124. data/docs/VouchersGetResponseBody.md +12 -13
  1125. data/docs/VouchersGetResponseBodyGift.md +10 -0
  1126. data/docs/VouchersGetResponseBodyLoyaltyCard.md +11 -0
  1127. data/docs/VouchersGetResponseBodyPublish.md +10 -0
  1128. data/docs/VouchersGetResponseBodyRedemption.md +12 -0
  1129. data/docs/VouchersImportCreateItemRequestBody.md +20 -0
  1130. data/docs/VouchersImportCreateItemRequestBodyRedemption.md +8 -0
  1131. data/docs/VouchersImportCreateResponseBody.md +8 -0
  1132. data/docs/VouchersImportCsvCreateResponseBody.md +1 -1
  1133. data/docs/VouchersListResponseBody.md +11 -0
  1134. data/docs/VouchersMetadataUpdateInBulkRequestBody.md +9 -0
  1135. data/docs/VouchersMetadataUpdateInBulkResponseBody.md +8 -0
  1136. data/docs/VouchersRedemptionGetResponseBody.md +7 -7
  1137. data/docs/VouchersTransactionsExportCreateResponseBody.md +8 -8
  1138. data/docs/VouchersTransactionsExportCreateResponseBodyResult.md +8 -0
  1139. data/docs/VouchersTransactionsListResponseBody.md +5 -4
  1140. data/docs/VouchersUpdateInBulkItemRequestBody.md +9 -0
  1141. data/docs/VouchersUpdateInBulkResponseBody.md +8 -0
  1142. data/docs/VouchersUpdateRequestBody.md +21 -0
  1143. data/docs/VouchersUpdateResponseBody.md +36 -0
  1144. data/docs/VouchersUpdateResponseBodyGift.md +10 -0
  1145. data/docs/VouchersUpdateResponseBodyLoyaltyCard.md +11 -0
  1146. data/docs/VouchersUpdateResponseBodyPublish.md +10 -0
  1147. data/docs/VouchersUpdateResponseBodyRedemption.md +12 -0
  1148. data/lib/VoucherifySdk/api/async_actions_api.rb +144 -0
  1149. data/lib/VoucherifySdk/api/bin_api.rb +148 -0
  1150. data/lib/VoucherifySdk/api/campaigns_api.rb +26 -79
  1151. data/lib/VoucherifySdk/api/categories_api.rb +0 -12
  1152. data/lib/VoucherifySdk/api/client_side_api.rb +69 -77
  1153. data/lib/VoucherifySdk/api/customers_api.rb +191 -150
  1154. data/lib/VoucherifySdk/api/exports_api.rb +7 -31
  1155. data/lib/VoucherifySdk/api/locations_api.rb +150 -0
  1156. data/lib/VoucherifySdk/api/loyalties_api.rb +1315 -337
  1157. data/lib/VoucherifySdk/api/management_api.rb +2407 -0
  1158. data/lib/VoucherifySdk/api/metadata_schemas_api.rb +138 -0
  1159. data/lib/VoucherifySdk/api/orders_api.rb +4 -24
  1160. data/lib/VoucherifySdk/api/product_collections_api.rb +8 -44
  1161. data/lib/VoucherifySdk/api/products_api.rb +40 -112
  1162. data/lib/VoucherifySdk/api/promotions_api.rb +205 -68
  1163. data/lib/VoucherifySdk/api/publications_api.rb +8 -24
  1164. data/lib/VoucherifySdk/api/qualifications_api.rb +2 -2
  1165. data/lib/VoucherifySdk/api/redemptions_api.rb +8 -36
  1166. data/lib/VoucherifySdk/api/referrals_api.rb +420 -0
  1167. data/lib/VoucherifySdk/api/rewards_api.rb +259 -52
  1168. data/lib/VoucherifySdk/api/segments_api.rb +123 -4
  1169. data/lib/VoucherifySdk/api/templates_api.rb +472 -0
  1170. data/lib/VoucherifySdk/api/validation_rules_api.rb +12 -76
  1171. data/lib/VoucherifySdk/api/vouchers_api.rb +495 -70
  1172. data/lib/VoucherifySdk/api_client.rb +22 -1
  1173. data/lib/VoucherifySdk/configuration.rb +14 -0
  1174. data/lib/VoucherifySdk/models/access_settings_campaign_assignments_list.rb +280 -0
  1175. data/lib/VoucherifySdk/models/applicable_to.rb +54 -45
  1176. data/lib/VoucherifySdk/models/applicable_to_effect.rb +6 -4
  1177. data/lib/VoucherifySdk/models/applicable_to_result_list.rb +8 -69
  1178. data/lib/VoucherifySdk/models/area_store_campaign_assignment.rb +280 -0
  1179. data/lib/VoucherifySdk/models/async_action_base.rb +347 -0
  1180. data/lib/VoucherifySdk/models/async_action_get_response_body.rb +357 -0
  1181. data/lib/VoucherifySdk/models/async_actions_list_response_body.rb +263 -0
  1182. data/lib/VoucherifySdk/models/bus_val_rule_assignment.rb +11 -62
  1183. data/lib/VoucherifySdk/models/campaign.rb +63 -157
  1184. data/lib/VoucherifySdk/models/campaign_base.rb +51 -147
  1185. data/lib/VoucherifySdk/models/campaign_loyalty_card.rb +2 -14
  1186. data/lib/VoucherifySdk/models/campaign_loyalty_card_expiration_rules.rb +31 -34
  1187. data/lib/VoucherifySdk/models/campaign_loyalty_voucher.rb +2 -22
  1188. data/lib/VoucherifySdk/models/campaign_loyalty_voucher_redemption.rb +0 -7
  1189. data/lib/VoucherifySdk/models/campaign_template.rb +303 -0
  1190. data/lib/VoucherifySdk/models/campaign_voucher.rb +53 -33
  1191. data/lib/VoucherifySdk/models/campaign_voucher_redemption.rb +0 -9
  1192. data/lib/VoucherifySdk/models/campaigns_create_request_body.rb +425 -82
  1193. data/lib/VoucherifySdk/models/campaigns_create_request_body_promotion.rb +210 -0
  1194. data/lib/VoucherifySdk/models/campaigns_create_request_body_voucher.rb +289 -0
  1195. data/lib/VoucherifySdk/models/campaigns_create_request_body_voucher_redemption.rb +209 -0
  1196. data/lib/VoucherifySdk/models/campaigns_create_response_body.rb +64 -158
  1197. data/lib/VoucherifySdk/models/campaigns_delete_response_body.rb +1 -7
  1198. data/lib/VoucherifySdk/models/campaigns_get_response_body.rb +64 -158
  1199. data/lib/VoucherifySdk/models/campaigns_import_create_response_body.rb +2 -22
  1200. data/lib/VoucherifySdk/models/campaigns_import_csv_create_response_body.rb +2 -22
  1201. data/lib/VoucherifySdk/models/campaigns_import_voucher_item.rb +47 -55
  1202. data/lib/VoucherifySdk/models/campaigns_import_voucher_item_redemption.rb +1 -8
  1203. data/lib/VoucherifySdk/models/campaigns_list_response_body.rb +6 -9
  1204. data/lib/VoucherifySdk/models/campaigns_update_request_body.rb +392 -82
  1205. data/lib/VoucherifySdk/models/campaigns_update_request_body_options.rb +209 -0
  1206. data/lib/VoucherifySdk/models/campaigns_update_response_body.rb +64 -158
  1207. data/lib/VoucherifySdk/models/campaigns_vouchers_create_combined_response_body.rb +543 -0
  1208. data/lib/VoucherifySdk/models/campaigns_vouchers_create_combined_response_body_gift.rb +256 -0
  1209. data/lib/VoucherifySdk/models/campaigns_vouchers_create_combined_response_body_loyalty_card.rb +243 -0
  1210. data/lib/VoucherifySdk/models/campaigns_vouchers_create_combined_response_body_publish.rb +234 -0
  1211. data/lib/VoucherifySdk/models/campaigns_vouchers_create_combined_response_body_redemption.rb +256 -0
  1212. data/lib/VoucherifySdk/models/campaigns_vouchers_create_in_bulk_request_body.rb +32 -39
  1213. data/lib/VoucherifySdk/models/campaigns_vouchers_create_in_bulk_request_body_redemption.rb +210 -0
  1214. data/lib/VoucherifySdk/models/campaigns_vouchers_create_request_body.rb +8 -16
  1215. data/lib/VoucherifySdk/models/campaigns_vouchers_create_request_body_redemption.rb +210 -0
  1216. data/lib/VoucherifySdk/models/campaigns_vouchers_create_response_body.rb +71 -85
  1217. data/lib/VoucherifySdk/models/campaigns_vouchers_create_response_body_gift.rb +256 -0
  1218. data/lib/VoucherifySdk/models/campaigns_vouchers_create_response_body_loyalty_card.rb +243 -0
  1219. data/lib/VoucherifySdk/models/campaigns_vouchers_create_response_body_publish.rb +234 -0
  1220. data/lib/VoucherifySdk/models/campaigns_vouchers_create_response_body_redemption.rb +256 -0
  1221. data/lib/VoucherifySdk/models/categories_create_request_body.rb +7 -21
  1222. data/lib/VoucherifySdk/models/categories_create_response_body.rb +11 -51
  1223. data/lib/VoucherifySdk/models/categories_get_response_body.rb +18 -86
  1224. data/lib/VoucherifySdk/models/categories_list_response_body.rb +6 -53
  1225. data/lib/VoucherifySdk/models/categories_update_request_body.rb +7 -21
  1226. data/lib/VoucherifySdk/models/categories_update_response_body.rb +13 -59
  1227. data/lib/VoucherifySdk/models/category.rb +17 -78
  1228. data/lib/VoucherifySdk/models/category_with_stacking_rules_type.rb +309 -0
  1229. data/lib/VoucherifySdk/models/client_events_create_request_body.rb +9 -37
  1230. data/lib/VoucherifySdk/models/client_events_create_request_body_loyalty.rb +1 -14
  1231. data/lib/VoucherifySdk/models/client_events_create_request_body_referral.rb +2 -14
  1232. data/lib/VoucherifySdk/models/client_events_create_response_body.rb +18 -39
  1233. data/lib/VoucherifySdk/models/client_promotions_tiers_list_response_body.rb +260 -0
  1234. data/lib/VoucherifySdk/models/client_qualifications_check_eligibility_request_body.rb +6 -42
  1235. data/lib/VoucherifySdk/models/client_qualifications_check_eligibility_response_body.rb +2 -8
  1236. data/lib/VoucherifySdk/models/client_redemptions_redeem_request_body.rb +19 -65
  1237. data/lib/VoucherifySdk/models/client_redemptions_redeem_request_body_options.rb +234 -0
  1238. data/lib/VoucherifySdk/models/client_redemptions_redeem_request_body_redeemables_item.rb +260 -0
  1239. data/lib/VoucherifySdk/models/client_redemptions_redeem_request_body_redeemables_item_gift.rb +210 -0
  1240. data/lib/VoucherifySdk/models/client_redemptions_redeem_request_body_redeemables_item_reward.rb +221 -0
  1241. data/lib/VoucherifySdk/models/client_redemptions_redeem_response_body.rb +4 -8
  1242. data/lib/VoucherifySdk/models/client_validations_validate_request_body.rb +19 -65
  1243. data/lib/VoucherifySdk/models/client_validations_validate_request_body_options.rb +234 -0
  1244. data/lib/VoucherifySdk/models/client_validations_validate_request_body_redeemables_item.rb +260 -0
  1245. data/lib/VoucherifySdk/models/client_validations_validate_request_body_redeemables_item_gift.rb +210 -0
  1246. data/lib/VoucherifySdk/models/client_validations_validate_request_body_redeemables_item_reward.rb +221 -0
  1247. data/lib/VoucherifySdk/models/client_validations_validate_response_body.rb +26 -34
  1248. data/lib/VoucherifySdk/models/client_validations_validate_response_body_redeemables_item.rb +312 -0
  1249. data/lib/VoucherifySdk/models/client_validations_validate_response_body_redeemables_item_result.rb +244 -0
  1250. data/lib/VoucherifySdk/models/client_validations_validate_response_body_redeemables_item_result_details.rb +216 -0
  1251. data/lib/VoucherifySdk/models/client_validations_validate_response_body_redeemables_item_result_discount.rb +400 -0
  1252. data/lib/VoucherifySdk/models/client_validations_validate_response_body_redeemables_item_result_discount_product.rb +231 -0
  1253. data/lib/VoucherifySdk/models/client_validations_validate_response_body_redeemables_item_result_gift.rb +210 -0
  1254. data/lib/VoucherifySdk/models/client_validations_validate_response_body_redeemables_item_result_loyalty_card.rb +209 -0
  1255. data/lib/VoucherifySdk/models/code_config.rb +8 -9
  1256. data/lib/VoucherifySdk/models/create_publication_campaign.rb +2 -32
  1257. data/lib/VoucherifySdk/models/customer.rb +35 -40
  1258. data/lib/VoucherifySdk/models/customer_activity.rb +20 -48
  1259. data/lib/VoucherifySdk/models/customer_address.rb +265 -0
  1260. data/lib/VoucherifySdk/models/customer_id.rb +3 -30
  1261. data/lib/VoucherifySdk/models/customer_loyalty.rb +4 -29
  1262. data/lib/VoucherifySdk/models/customer_loyalty_campaigns_entry.rb +229 -0
  1263. data/lib/VoucherifySdk/models/customer_redeemable.rb +342 -0
  1264. data/lib/VoucherifySdk/models/customer_redeemable_redeemable.rb +263 -0
  1265. data/lib/VoucherifySdk/models/customer_referrals.rb +2 -21
  1266. data/lib/VoucherifySdk/models/customer_referrals_campaigns_item.rb +0 -7
  1267. data/lib/VoucherifySdk/models/customer_summary.rb +0 -7
  1268. data/lib/VoucherifySdk/models/customer_summary_orders.rb +5 -35
  1269. data/lib/VoucherifySdk/models/customer_summary_redemptions.rb +8 -63
  1270. data/lib/VoucherifySdk/models/customer_summary_redemptions_gift.rb +2 -17
  1271. data/lib/VoucherifySdk/models/customer_summary_redemptions_loyalty_card.rb +2 -21
  1272. data/lib/VoucherifySdk/models/customer_with_summary_loyalty_referrals.rb +101 -125
  1273. data/lib/VoucherifySdk/models/customer_with_summary_loyalty_referrals_address.rb +265 -0
  1274. data/lib/VoucherifySdk/models/customer_with_summary_loyalty_referrals_assets.rb +210 -0
  1275. data/lib/VoucherifySdk/models/customers_activities_list_response_body.rb +6 -33
  1276. data/lib/VoucherifySdk/models/customers_activity_list_response_body.rb +284 -0
  1277. data/lib/VoucherifySdk/models/customers_create_request_body.rb +12 -17
  1278. data/lib/VoucherifySdk/models/customers_create_request_body_address.rb +265 -0
  1279. data/lib/VoucherifySdk/models/customers_create_response_body.rb +21 -45
  1280. data/lib/VoucherifySdk/models/customers_create_response_body_address.rb +265 -0
  1281. data/lib/VoucherifySdk/models/customers_create_response_body_assets.rb +210 -0
  1282. data/lib/VoucherifySdk/models/customers_get_response_body.rb +21 -45
  1283. data/lib/VoucherifySdk/models/customers_get_response_body_address.rb +265 -0
  1284. data/lib/VoucherifySdk/models/customers_get_response_body_assets.rb +210 -0
  1285. data/lib/VoucherifySdk/models/customers_import_csv_create_response_body.rb +2 -22
  1286. data/lib/VoucherifySdk/models/customers_list_response_body.rb +8 -34
  1287. data/lib/VoucherifySdk/models/customers_metadata_update_in_bulk_request_body.rb +3 -22
  1288. data/lib/VoucherifySdk/models/customers_metadata_update_in_bulk_response_body.rb +2 -22
  1289. data/lib/VoucherifySdk/models/customers_permanent_deletion_create_response_body.rb +9 -52
  1290. data/lib/VoucherifySdk/models/customers_permanent_deletion_create_response_body_data_json.rb +7 -54
  1291. data/lib/VoucherifySdk/models/customers_redeemables_list_response_body.rb +271 -0
  1292. data/lib/VoucherifySdk/models/customers_segments_list_response_body.rb +6 -40
  1293. data/lib/VoucherifySdk/models/customers_update_in_bulk_request_body.rb +25 -38
  1294. data/lib/VoucherifySdk/models/customers_update_in_bulk_request_body_address.rb +265 -0
  1295. data/lib/VoucherifySdk/models/customers_update_in_bulk_response_body.rb +2 -22
  1296. data/lib/VoucherifySdk/models/customers_update_request_body.rb +10 -17
  1297. data/lib/VoucherifySdk/models/customers_update_request_body_address.rb +265 -0
  1298. data/lib/VoucherifySdk/models/customers_update_response_body.rb +21 -45
  1299. data/lib/VoucherifySdk/models/customers_update_response_body_address.rb +265 -0
  1300. data/lib/VoucherifySdk/models/customers_update_response_body_assets.rb +210 -0
  1301. data/lib/VoucherifySdk/models/discount.rb +374 -81
  1302. data/lib/VoucherifySdk/models/discount_unit_multiple_one_unit.rb +4 -31
  1303. data/lib/VoucherifySdk/models/earning_rule.rb +43 -94
  1304. data/lib/VoucherifySdk/models/earning_rule_custom_event.rb +210 -0
  1305. data/lib/VoucherifySdk/models/earning_rule_loyalty.rb +295 -0
  1306. data/lib/VoucherifySdk/models/earning_rule_loyalty_custom_event.rb +208 -0
  1307. data/lib/VoucherifySdk/models/earning_rule_loyalty_custom_event_metadata.rb +232 -0
  1308. data/lib/VoucherifySdk/models/earning_rule_loyalty_customer.rb +208 -0
  1309. data/lib/VoucherifySdk/models/earning_rule_loyalty_customer_metadata.rb +232 -0
  1310. data/lib/VoucherifySdk/models/earning_rule_loyalty_order.rb +228 -0
  1311. data/lib/VoucherifySdk/models/earning_rule_loyalty_order_amount.rb +221 -0
  1312. data/lib/VoucherifySdk/models/earning_rule_loyalty_order_items.rb +228 -0
  1313. data/lib/VoucherifySdk/models/earning_rule_loyalty_order_items_amount.rb +267 -0
  1314. data/lib/VoucherifySdk/models/earning_rule_loyalty_order_items_quantity.rb +267 -0
  1315. data/lib/VoucherifySdk/models/earning_rule_loyalty_order_items_subtotal_amount.rb +267 -0
  1316. data/lib/VoucherifySdk/models/earning_rule_loyalty_order_metadata.rb +232 -0
  1317. data/lib/VoucherifySdk/models/earning_rule_loyalty_order_total_amount.rb +221 -0
  1318. data/lib/VoucherifySdk/models/earning_rule_loyalty_tier.rb +210 -0
  1319. data/lib/VoucherifySdk/models/earning_rule_segment.rb +210 -0
  1320. data/lib/VoucherifySdk/models/earning_rule_source.rb +258 -0
  1321. data/lib/VoucherifySdk/models/error.rb +8 -43
  1322. data/lib/VoucherifySdk/models/events_create_request_body.rb +11 -39
  1323. data/lib/VoucherifySdk/models/events_create_request_body_loyalty.rb +210 -0
  1324. data/lib/VoucherifySdk/models/events_create_request_body_referral.rb +221 -0
  1325. data/lib/VoucherifySdk/models/events_create_response_body.rb +18 -39
  1326. data/lib/VoucherifySdk/models/export.rb +293 -79
  1327. data/lib/VoucherifySdk/models/export_parameters.rb +255 -0
  1328. data/lib/VoucherifySdk/models/export_parameters_filters.rb +256 -0
  1329. data/lib/VoucherifySdk/models/export_result.rb +209 -0
  1330. data/lib/VoucherifySdk/models/export_voucher_transactions_filters.rb +0 -7
  1331. data/lib/VoucherifySdk/models/exports_create_request_body.rb +211 -80
  1332. data/lib/VoucherifySdk/models/exports_create_request_body_parameters.rb +255 -0
  1333. data/lib/VoucherifySdk/models/exports_create_request_body_parameters_filters.rb +256 -0
  1334. data/lib/VoucherifySdk/models/exports_create_response_body.rb +296 -80
  1335. data/lib/VoucherifySdk/models/exports_create_response_body_parameters.rb +255 -0
  1336. data/lib/VoucherifySdk/models/exports_create_response_body_parameters_filters.rb +256 -0
  1337. data/lib/VoucherifySdk/models/exports_get_response_body.rb +11 -86
  1338. data/lib/VoucherifySdk/models/exports_get_response_body_parameters.rb +255 -0
  1339. data/lib/VoucherifySdk/models/exports_get_response_body_parameters_filters.rb +256 -0
  1340. data/lib/VoucherifySdk/models/exports_get_response_body_result.rb +209 -0
  1341. data/lib/VoucherifySdk/models/exports_list_response_body.rb +6 -53
  1342. data/lib/VoucherifySdk/models/field_conditions.rb +0 -7
  1343. data/lib/VoucherifySdk/models/filter_conditions_date_time.rb +265 -0
  1344. data/lib/VoucherifySdk/models/filter_conditions_string.rb +13 -12
  1345. data/lib/VoucherifySdk/models/filters_condition.rb +50 -32
  1346. data/lib/VoucherifySdk/models/gift.rb +3 -31
  1347. data/lib/VoucherifySdk/models/inapplicable_to.rb +54 -52
  1348. data/lib/VoucherifySdk/models/inapplicable_to_result_list.rb +8 -69
  1349. data/lib/VoucherifySdk/models/list_publications_item_voucher.rb +6 -37
  1350. data/lib/VoucherifySdk/models/location.rb +290 -0
  1351. data/lib/VoucherifySdk/models/location_shape.rb +264 -0
  1352. data/lib/VoucherifySdk/models/location_shape_distance.rb +221 -0
  1353. data/lib/VoucherifySdk/models/location_shape_geojson.rb +244 -0
  1354. data/lib/VoucherifySdk/models/locations_get_response_body.rb +290 -0
  1355. data/lib/VoucherifySdk/models/locations_get_response_body_shape.rb +264 -0
  1356. data/lib/VoucherifySdk/models/locations_get_response_body_shape_distance.rb +221 -0
  1357. data/lib/VoucherifySdk/models/locations_get_response_body_shape_geojson.rb +244 -0
  1358. data/lib/VoucherifySdk/models/locations_list_response_body.rb +260 -0
  1359. data/lib/VoucherifySdk/models/loyalties_create_campaign_request_body.rb +438 -0
  1360. data/lib/VoucherifySdk/models/loyalties_create_campaign_response_body.rb +565 -0
  1361. data/lib/VoucherifySdk/models/loyalties_delete_response_body.rb +1 -21
  1362. data/lib/VoucherifySdk/models/loyalties_earning_rules_create_request_body_item.rb +360 -0
  1363. data/lib/VoucherifySdk/models/loyalties_earning_rules_create_request_body_item_custom_event.rb +210 -0
  1364. data/lib/VoucherifySdk/models/loyalties_earning_rules_create_request_body_item_loyalty.rb +291 -0
  1365. data/lib/VoucherifySdk/models/loyalties_earning_rules_create_request_body_item_loyalty_custom_event.rb +208 -0
  1366. data/lib/VoucherifySdk/models/loyalties_earning_rules_create_request_body_item_loyalty_custom_event_metadata.rb +232 -0
  1367. data/lib/VoucherifySdk/models/loyalties_earning_rules_create_request_body_item_loyalty_customer.rb +208 -0
  1368. data/lib/VoucherifySdk/models/loyalties_earning_rules_create_request_body_item_loyalty_customer_metadata.rb +232 -0
  1369. data/lib/VoucherifySdk/models/loyalties_earning_rules_create_request_body_item_loyalty_order.rb +228 -0
  1370. data/lib/VoucherifySdk/models/loyalties_earning_rules_create_request_body_item_loyalty_order_amount.rb +221 -0
  1371. data/lib/VoucherifySdk/models/loyalties_earning_rules_create_request_body_item_loyalty_order_items.rb +228 -0
  1372. data/lib/VoucherifySdk/models/loyalties_earning_rules_create_request_body_item_loyalty_order_items_amount.rb +267 -0
  1373. data/lib/VoucherifySdk/models/loyalties_earning_rules_create_request_body_item_loyalty_order_items_quantity.rb +267 -0
  1374. data/lib/VoucherifySdk/models/loyalties_earning_rules_create_request_body_item_loyalty_order_items_subtotal_amount.rb +267 -0
  1375. data/lib/VoucherifySdk/models/loyalties_earning_rules_create_request_body_item_loyalty_order_metadata.rb +232 -0
  1376. data/lib/VoucherifySdk/models/loyalties_earning_rules_create_request_body_item_loyalty_order_total_amount.rb +221 -0
  1377. data/lib/VoucherifySdk/models/loyalties_earning_rules_create_request_body_item_loyalty_tier.rb +210 -0
  1378. data/lib/VoucherifySdk/models/loyalties_earning_rules_create_request_body_item_segment.rb +210 -0
  1379. data/lib/VoucherifySdk/models/loyalties_earning_rules_create_request_body_item_source.rb +209 -0
  1380. data/lib/VoucherifySdk/models/loyalties_earning_rules_create_response_body.rb +424 -0
  1381. data/lib/VoucherifySdk/models/loyalties_earning_rules_create_response_body_custom_event.rb +210 -0
  1382. data/lib/VoucherifySdk/models/loyalties_earning_rules_create_response_body_loyalty.rb +295 -0
  1383. data/lib/VoucherifySdk/models/loyalties_earning_rules_create_response_body_loyalty_custom_event.rb +208 -0
  1384. data/lib/VoucherifySdk/models/loyalties_earning_rules_create_response_body_loyalty_custom_event_metadata.rb +232 -0
  1385. data/lib/VoucherifySdk/models/loyalties_earning_rules_create_response_body_loyalty_customer.rb +208 -0
  1386. data/lib/VoucherifySdk/models/loyalties_earning_rules_create_response_body_loyalty_customer_metadata.rb +232 -0
  1387. data/lib/VoucherifySdk/models/loyalties_earning_rules_create_response_body_loyalty_order.rb +228 -0
  1388. data/lib/VoucherifySdk/models/loyalties_earning_rules_create_response_body_loyalty_order_amount.rb +221 -0
  1389. data/lib/VoucherifySdk/models/loyalties_earning_rules_create_response_body_loyalty_order_items.rb +228 -0
  1390. data/lib/VoucherifySdk/models/loyalties_earning_rules_create_response_body_loyalty_order_items_amount.rb +267 -0
  1391. data/lib/VoucherifySdk/models/loyalties_earning_rules_create_response_body_loyalty_order_items_quantity.rb +267 -0
  1392. data/lib/VoucherifySdk/models/loyalties_earning_rules_create_response_body_loyalty_order_items_subtotal_amount.rb +267 -0
  1393. data/lib/VoucherifySdk/models/loyalties_earning_rules_create_response_body_loyalty_order_metadata.rb +232 -0
  1394. data/lib/VoucherifySdk/models/loyalties_earning_rules_create_response_body_loyalty_order_total_amount.rb +221 -0
  1395. data/lib/VoucherifySdk/models/loyalties_earning_rules_create_response_body_loyalty_tier.rb +210 -0
  1396. data/lib/VoucherifySdk/models/loyalties_earning_rules_create_response_body_segment.rb +210 -0
  1397. data/lib/VoucherifySdk/models/loyalties_earning_rules_create_response_body_source.rb +258 -0
  1398. data/lib/VoucherifySdk/models/loyalties_earning_rules_disable_response_body.rb +44 -91
  1399. data/lib/VoucherifySdk/models/loyalties_earning_rules_disable_response_body_custom_event.rb +210 -0
  1400. data/lib/VoucherifySdk/models/loyalties_earning_rules_disable_response_body_loyalty.rb +295 -0
  1401. data/lib/VoucherifySdk/models/loyalties_earning_rules_disable_response_body_loyalty_custom_event.rb +208 -0
  1402. data/lib/VoucherifySdk/models/loyalties_earning_rules_disable_response_body_loyalty_custom_event_metadata.rb +232 -0
  1403. data/lib/VoucherifySdk/models/loyalties_earning_rules_disable_response_body_loyalty_customer.rb +208 -0
  1404. data/lib/VoucherifySdk/models/loyalties_earning_rules_disable_response_body_loyalty_customer_metadata.rb +232 -0
  1405. data/lib/VoucherifySdk/models/loyalties_earning_rules_disable_response_body_loyalty_order.rb +228 -0
  1406. data/lib/VoucherifySdk/models/loyalties_earning_rules_disable_response_body_loyalty_order_amount.rb +221 -0
  1407. data/lib/VoucherifySdk/models/loyalties_earning_rules_disable_response_body_loyalty_order_items.rb +228 -0
  1408. data/lib/VoucherifySdk/models/loyalties_earning_rules_disable_response_body_loyalty_order_items_amount.rb +267 -0
  1409. data/lib/VoucherifySdk/models/loyalties_earning_rules_disable_response_body_loyalty_order_items_quantity.rb +267 -0
  1410. data/lib/VoucherifySdk/models/loyalties_earning_rules_disable_response_body_loyalty_order_items_subtotal_amount.rb +267 -0
  1411. data/lib/VoucherifySdk/models/loyalties_earning_rules_disable_response_body_loyalty_order_metadata.rb +232 -0
  1412. data/lib/VoucherifySdk/models/loyalties_earning_rules_disable_response_body_loyalty_order_total_amount.rb +221 -0
  1413. data/lib/VoucherifySdk/models/loyalties_earning_rules_disable_response_body_loyalty_tier.rb +210 -0
  1414. data/lib/VoucherifySdk/models/loyalties_earning_rules_disable_response_body_segment.rb +210 -0
  1415. data/lib/VoucherifySdk/models/loyalties_earning_rules_disable_response_body_source.rb +258 -0
  1416. data/lib/VoucherifySdk/models/loyalties_earning_rules_enable_response_body.rb +44 -91
  1417. data/lib/VoucherifySdk/models/loyalties_earning_rules_enable_response_body_custom_event.rb +210 -0
  1418. data/lib/VoucherifySdk/models/loyalties_earning_rules_enable_response_body_loyalty.rb +295 -0
  1419. data/lib/VoucherifySdk/models/loyalties_earning_rules_enable_response_body_loyalty_custom_event.rb +208 -0
  1420. data/lib/VoucherifySdk/models/loyalties_earning_rules_enable_response_body_loyalty_custom_event_metadata.rb +232 -0
  1421. data/lib/VoucherifySdk/models/loyalties_earning_rules_enable_response_body_loyalty_customer.rb +208 -0
  1422. data/lib/VoucherifySdk/models/loyalties_earning_rules_enable_response_body_loyalty_customer_metadata.rb +232 -0
  1423. data/lib/VoucherifySdk/models/loyalties_earning_rules_enable_response_body_loyalty_order.rb +228 -0
  1424. data/lib/VoucherifySdk/models/loyalties_earning_rules_enable_response_body_loyalty_order_amount.rb +221 -0
  1425. data/lib/VoucherifySdk/models/loyalties_earning_rules_enable_response_body_loyalty_order_items.rb +228 -0
  1426. data/lib/VoucherifySdk/models/loyalties_earning_rules_enable_response_body_loyalty_order_items_amount.rb +267 -0
  1427. data/lib/VoucherifySdk/models/loyalties_earning_rules_enable_response_body_loyalty_order_items_quantity.rb +267 -0
  1428. data/lib/VoucherifySdk/models/loyalties_earning_rules_enable_response_body_loyalty_order_items_subtotal_amount.rb +267 -0
  1429. data/lib/VoucherifySdk/models/loyalties_earning_rules_enable_response_body_loyalty_order_metadata.rb +232 -0
  1430. data/lib/VoucherifySdk/models/loyalties_earning_rules_enable_response_body_loyalty_order_total_amount.rb +221 -0
  1431. data/lib/VoucherifySdk/models/loyalties_earning_rules_enable_response_body_loyalty_tier.rb +210 -0
  1432. data/lib/VoucherifySdk/models/loyalties_earning_rules_enable_response_body_segment.rb +210 -0
  1433. data/lib/VoucherifySdk/models/loyalties_earning_rules_enable_response_body_source.rb +258 -0
  1434. data/lib/VoucherifySdk/models/loyalties_earning_rules_get_response_body.rb +44 -95
  1435. data/lib/VoucherifySdk/models/loyalties_earning_rules_get_response_body_custom_event.rb +210 -0
  1436. data/lib/VoucherifySdk/models/loyalties_earning_rules_get_response_body_loyalty.rb +295 -0
  1437. data/lib/VoucherifySdk/models/loyalties_earning_rules_get_response_body_loyalty_custom_event.rb +208 -0
  1438. data/lib/VoucherifySdk/models/loyalties_earning_rules_get_response_body_loyalty_custom_event_metadata.rb +232 -0
  1439. data/lib/VoucherifySdk/models/loyalties_earning_rules_get_response_body_loyalty_customer.rb +208 -0
  1440. data/lib/VoucherifySdk/models/loyalties_earning_rules_get_response_body_loyalty_customer_metadata.rb +232 -0
  1441. data/lib/VoucherifySdk/models/loyalties_earning_rules_get_response_body_loyalty_order.rb +228 -0
  1442. data/lib/VoucherifySdk/models/loyalties_earning_rules_get_response_body_loyalty_order_amount.rb +221 -0
  1443. data/lib/VoucherifySdk/models/loyalties_earning_rules_get_response_body_loyalty_order_items.rb +228 -0
  1444. data/lib/VoucherifySdk/models/loyalties_earning_rules_get_response_body_loyalty_order_items_amount.rb +267 -0
  1445. data/lib/VoucherifySdk/models/loyalties_earning_rules_get_response_body_loyalty_order_items_quantity.rb +267 -0
  1446. data/lib/VoucherifySdk/models/loyalties_earning_rules_get_response_body_loyalty_order_items_subtotal_amount.rb +267 -0
  1447. data/lib/VoucherifySdk/models/loyalties_earning_rules_get_response_body_loyalty_order_metadata.rb +232 -0
  1448. data/lib/VoucherifySdk/models/loyalties_earning_rules_get_response_body_loyalty_order_total_amount.rb +221 -0
  1449. data/lib/VoucherifySdk/models/loyalties_earning_rules_get_response_body_loyalty_tier.rb +210 -0
  1450. data/lib/VoucherifySdk/models/loyalties_earning_rules_get_response_body_segment.rb +210 -0
  1451. data/lib/VoucherifySdk/models/loyalties_earning_rules_get_response_body_source.rb +258 -0
  1452. data/lib/VoucherifySdk/models/loyalties_earning_rules_list_response_body.rb +273 -0
  1453. data/lib/VoucherifySdk/models/loyalties_earning_rules_update_request_body.rb +325 -0
  1454. data/lib/VoucherifySdk/models/loyalties_earning_rules_update_request_body_loyalty.rb +295 -0
  1455. data/lib/VoucherifySdk/models/loyalties_earning_rules_update_request_body_loyalty_custom_event.rb +208 -0
  1456. data/lib/VoucherifySdk/models/loyalties_earning_rules_update_request_body_loyalty_custom_event_metadata.rb +232 -0
  1457. data/lib/VoucherifySdk/models/loyalties_earning_rules_update_request_body_loyalty_customer.rb +208 -0
  1458. data/lib/VoucherifySdk/models/loyalties_earning_rules_update_request_body_loyalty_customer_metadata.rb +232 -0
  1459. data/lib/VoucherifySdk/models/loyalties_earning_rules_update_request_body_loyalty_order.rb +228 -0
  1460. data/lib/VoucherifySdk/models/loyalties_earning_rules_update_request_body_loyalty_order_amount.rb +221 -0
  1461. data/lib/VoucherifySdk/models/loyalties_earning_rules_update_request_body_loyalty_order_items.rb +228 -0
  1462. data/lib/VoucherifySdk/models/loyalties_earning_rules_update_request_body_loyalty_order_items_amount.rb +267 -0
  1463. data/lib/VoucherifySdk/models/loyalties_earning_rules_update_request_body_loyalty_order_items_quantity.rb +267 -0
  1464. data/lib/VoucherifySdk/models/loyalties_earning_rules_update_request_body_loyalty_order_items_subtotal_amount.rb +267 -0
  1465. data/lib/VoucherifySdk/models/loyalties_earning_rules_update_request_body_loyalty_order_metadata.rb +232 -0
  1466. data/lib/VoucherifySdk/models/loyalties_earning_rules_update_request_body_loyalty_order_total_amount.rb +221 -0
  1467. data/lib/VoucherifySdk/models/loyalties_earning_rules_update_request_body_source.rb +210 -0
  1468. data/lib/VoucherifySdk/models/loyalties_earning_rules_update_response_body.rb +424 -0
  1469. data/lib/VoucherifySdk/models/loyalties_earning_rules_update_response_body_custom_event.rb +210 -0
  1470. data/lib/VoucherifySdk/models/loyalties_earning_rules_update_response_body_loyalty.rb +295 -0
  1471. data/lib/VoucherifySdk/models/loyalties_earning_rules_update_response_body_loyalty_custom_event.rb +208 -0
  1472. data/lib/VoucherifySdk/models/loyalties_earning_rules_update_response_body_loyalty_custom_event_metadata.rb +232 -0
  1473. data/lib/VoucherifySdk/models/loyalties_earning_rules_update_response_body_loyalty_customer.rb +208 -0
  1474. data/lib/VoucherifySdk/models/loyalties_earning_rules_update_response_body_loyalty_customer_metadata.rb +232 -0
  1475. data/lib/VoucherifySdk/models/loyalties_earning_rules_update_response_body_loyalty_order.rb +228 -0
  1476. data/lib/VoucherifySdk/models/loyalties_earning_rules_update_response_body_loyalty_order_amount.rb +221 -0
  1477. data/lib/VoucherifySdk/models/loyalties_earning_rules_update_response_body_loyalty_order_items.rb +228 -0
  1478. data/lib/VoucherifySdk/models/loyalties_earning_rules_update_response_body_loyalty_order_items_amount.rb +267 -0
  1479. data/lib/VoucherifySdk/models/loyalties_earning_rules_update_response_body_loyalty_order_items_quantity.rb +267 -0
  1480. data/lib/VoucherifySdk/models/loyalties_earning_rules_update_response_body_loyalty_order_items_subtotal_amount.rb +267 -0
  1481. data/lib/VoucherifySdk/models/loyalties_earning_rules_update_response_body_loyalty_order_metadata.rb +232 -0
  1482. data/lib/VoucherifySdk/models/loyalties_earning_rules_update_response_body_loyalty_order_total_amount.rb +221 -0
  1483. data/lib/VoucherifySdk/models/loyalties_earning_rules_update_response_body_loyalty_tier.rb +210 -0
  1484. data/lib/VoucherifySdk/models/loyalties_earning_rules_update_response_body_segment.rb +210 -0
  1485. data/lib/VoucherifySdk/models/loyalties_earning_rules_update_response_body_source.rb +258 -0
  1486. data/lib/VoucherifySdk/models/loyalties_get_campaign_response_body.rb +565 -0
  1487. data/lib/VoucherifySdk/models/loyalties_list_campaigns_response_body.rb +273 -0
  1488. data/lib/VoucherifySdk/models/loyalties_list_members_response_body.rb +273 -0
  1489. data/lib/VoucherifySdk/models/loyalties_loyalty_tier_reward.rb +1 -18
  1490. data/lib/VoucherifySdk/models/loyalties_member_activity_list_response_body.rb +284 -0
  1491. data/lib/VoucherifySdk/models/loyalties_members_balance_update_request_body.rb +6 -16
  1492. data/lib/VoucherifySdk/models/loyalties_members_balance_update_response_body.rb +13 -97
  1493. data/lib/VoucherifySdk/models/loyalties_members_balance_update_response_body_related_object.rb +2 -29
  1494. data/lib/VoucherifySdk/models/loyalties_members_create_request_body.rb +252 -0
  1495. data/lib/VoucherifySdk/models/loyalties_members_create_response_body.rb +503 -0
  1496. data/lib/VoucherifySdk/models/loyalties_members_create_response_body_loyalty_card.rb +243 -0
  1497. data/lib/VoucherifySdk/models/loyalties_members_create_response_body_publish.rb +234 -0
  1498. data/lib/VoucherifySdk/models/loyalties_members_create_response_body_redemption.rb +256 -0
  1499. data/lib/VoucherifySdk/models/loyalties_members_get_response_body.rb +503 -0
  1500. data/lib/VoucherifySdk/models/loyalties_members_get_response_body_loyalty_card.rb +243 -0
  1501. data/lib/VoucherifySdk/models/loyalties_members_get_response_body_publish.rb +234 -0
  1502. data/lib/VoucherifySdk/models/loyalties_members_get_response_body_redemption.rb +256 -0
  1503. data/lib/VoucherifySdk/models/loyalties_members_points_expiration_list_response_body.rb +10 -57
  1504. data/lib/VoucherifySdk/models/loyalties_members_points_expiration_list_response_body_data_item.rb +3 -20
  1505. data/lib/VoucherifySdk/models/loyalties_members_points_expiration_list_response_body_data_item_bucket.rb +0 -7
  1506. data/lib/VoucherifySdk/models/loyalties_members_redemption_redeem_request_body.rb +3 -8
  1507. data/lib/VoucherifySdk/models/loyalties_members_redemption_redeem_request_body_reward.rb +2 -7
  1508. data/lib/VoucherifySdk/models/loyalties_members_redemption_redeem_response_body.rb +36 -150
  1509. data/lib/VoucherifySdk/models/loyalties_members_redemption_redeem_response_body_channel.rb +245 -0
  1510. data/lib/VoucherifySdk/models/loyalties_members_redemption_redeem_response_body_gift.rb +210 -0
  1511. data/lib/VoucherifySdk/models/loyalties_members_redemption_redeem_response_body_loyalty_card.rb +210 -0
  1512. data/lib/VoucherifySdk/models/loyalties_members_redemption_redeem_response_body_related_redemptions.rb +222 -0
  1513. data/lib/VoucherifySdk/models/loyalties_members_redemption_redeem_response_body_related_redemptions_redemptions_item.rb +218 -0
  1514. data/lib/VoucherifySdk/models/loyalties_members_redemption_redeem_response_body_related_redemptions_rollbacks_item.rb +218 -0
  1515. data/lib/VoucherifySdk/models/loyalties_members_redemption_redeem_response_body_voucher.rb +542 -0
  1516. data/lib/VoucherifySdk/models/loyalties_members_redemption_redeem_response_body_voucher_gift.rb +256 -0
  1517. data/lib/VoucherifySdk/models/loyalties_members_redemption_redeem_response_body_voucher_loyalty_card.rb +243 -0
  1518. data/lib/VoucherifySdk/models/loyalties_members_redemption_redeem_response_body_voucher_publish.rb +234 -0
  1519. data/lib/VoucherifySdk/models/loyalties_members_redemption_redeem_response_body_voucher_redemption.rb +256 -0
  1520. data/lib/VoucherifySdk/models/loyalties_members_rewards_list_response_body.rb +8 -69
  1521. data/lib/VoucherifySdk/models/loyalties_members_rewards_list_response_body_data_item.rb +1 -18
  1522. data/lib/VoucherifySdk/models/loyalties_members_tiers_list_response_body.rb +6 -53
  1523. data/lib/VoucherifySdk/models/loyalties_members_transactions_export_create_request_body.rb +2 -8
  1524. data/lib/VoucherifySdk/models/loyalties_members_transactions_export_create_request_body_parameters.rb +1 -7
  1525. data/lib/VoucherifySdk/models/loyalties_members_transactions_export_create_response_body.rb +10 -84
  1526. data/lib/VoucherifySdk/models/loyalties_members_transactions_export_create_response_body_parameters.rb +252 -0
  1527. data/lib/VoucherifySdk/models/loyalties_members_transactions_list_response_body.rb +26 -62
  1528. data/lib/VoucherifySdk/models/loyalties_members_transfers_create_response_body.rb +35 -83
  1529. data/lib/VoucherifySdk/models/loyalties_members_transfers_create_response_body_assets.rb +2 -7
  1530. data/lib/VoucherifySdk/models/loyalties_members_transfers_create_response_body_assets_barcode.rb +2 -7
  1531. data/lib/VoucherifySdk/models/loyalties_members_transfers_create_response_body_assets_qr.rb +2 -7
  1532. data/lib/VoucherifySdk/models/loyalties_members_transfers_create_response_body_loyalty_card.rb +5 -22
  1533. data/lib/VoucherifySdk/models/loyalties_members_transfers_create_response_body_publish.rb +6 -24
  1534. data/lib/VoucherifySdk/models/loyalties_members_transfers_create_response_body_redemption.rb +7 -33
  1535. data/lib/VoucherifySdk/models/loyalties_points_expiration_export_create_request_body.rb +208 -0
  1536. data/lib/VoucherifySdk/models/loyalties_points_expiration_export_create_request_body_parameters.rb +256 -0
  1537. data/lib/VoucherifySdk/models/loyalties_points_expiration_export_create_request_body_parameters_filters.rb +250 -0
  1538. data/lib/VoucherifySdk/models/loyalties_points_expiration_export_create_request_body_parameters_filters_campaign_id.rb +209 -0
  1539. data/lib/VoucherifySdk/models/loyalties_points_expiration_export_create_request_body_parameters_filters_campaign_id_conditions.rb +247 -0
  1540. data/lib/VoucherifySdk/models/loyalties_points_expiration_export_create_request_body_parameters_filters_voucher_id.rb +209 -0
  1541. data/lib/VoucherifySdk/models/loyalties_points_expiration_export_create_request_body_parameters_filters_voucher_id_conditions.rb +247 -0
  1542. data/lib/VoucherifySdk/models/loyalties_points_expiration_export_create_response_body.rb +332 -0
  1543. data/lib/VoucherifySdk/models/loyalties_points_expiration_export_create_response_body_parameters.rb +256 -0
  1544. data/lib/VoucherifySdk/models/loyalties_points_expiration_export_create_response_body_parameters_filters.rb +250 -0
  1545. data/lib/VoucherifySdk/models/loyalties_points_expiration_export_create_response_body_parameters_filters_campaign_id.rb +209 -0
  1546. data/lib/VoucherifySdk/models/loyalties_points_expiration_export_create_response_body_parameters_filters_campaign_id_conditions.rb +247 -0
  1547. data/lib/VoucherifySdk/models/loyalties_points_expiration_export_create_response_body_parameters_filters_voucher_id.rb +209 -0
  1548. data/lib/VoucherifySdk/models/loyalties_points_expiration_export_create_response_body_parameters_filters_voucher_id_conditions.rb +247 -0
  1549. data/lib/VoucherifySdk/models/loyalties_reward_assignments_get_response_body.rb +12 -79
  1550. data/lib/VoucherifySdk/models/loyalties_reward_assignments_get_response_body_parameters.rb +209 -0
  1551. data/lib/VoucherifySdk/models/loyalties_reward_assignments_get_response_body_parameters_loyalty.rb +221 -0
  1552. data/lib/VoucherifySdk/models/loyalties_reward_assignments_list_response_body.rb +273 -0
  1553. data/lib/VoucherifySdk/models/loyalties_reward_assignments_reward_get_response_body.rb +11 -80
  1554. data/lib/VoucherifySdk/models/loyalties_reward_assignments_reward_get_response_body_attributes.rb +221 -0
  1555. data/lib/VoucherifySdk/models/loyalties_rewards_create_assignment_item_request_body.rb +231 -0
  1556. data/lib/VoucherifySdk/models/loyalties_rewards_create_assignment_item_request_body_parameters.rb +209 -0
  1557. data/lib/VoucherifySdk/models/loyalties_rewards_create_assignment_item_request_body_parameters_loyalty.rb +210 -0
  1558. data/lib/VoucherifySdk/models/loyalties_rewards_create_assignment_response_body.rb +316 -0
  1559. data/lib/VoucherifySdk/models/loyalties_rewards_create_assignment_response_body_parameters.rb +209 -0
  1560. data/lib/VoucherifySdk/models/loyalties_rewards_create_assignment_response_body_parameters_loyalty.rb +221 -0
  1561. data/lib/VoucherifySdk/models/loyalties_rewards_get_response_body.rb +12 -79
  1562. data/lib/VoucherifySdk/models/loyalties_rewards_get_response_body_parameters.rb +209 -0
  1563. data/lib/VoucherifySdk/models/loyalties_rewards_get_response_body_parameters_loyalty.rb +221 -0
  1564. data/lib/VoucherifySdk/models/loyalties_rewards_list_assignments_response_body.rb +273 -0
  1565. data/lib/VoucherifySdk/models/loyalties_rewards_update_assignment_request_body.rb +209 -0
  1566. data/lib/VoucherifySdk/models/loyalties_rewards_update_assignment_request_body_parameters.rb +209 -0
  1567. data/lib/VoucherifySdk/models/loyalties_rewards_update_assignment_request_body_parameters_loyalty.rb +221 -0
  1568. data/lib/VoucherifySdk/models/loyalties_rewards_update_assignment_response_body.rb +316 -0
  1569. data/lib/VoucherifySdk/models/loyalties_rewards_update_assignment_response_body_parameters.rb +209 -0
  1570. data/lib/VoucherifySdk/models/loyalties_rewards_update_assignment_response_body_parameters_loyalty.rb +221 -0
  1571. data/lib/VoucherifySdk/models/loyalties_tiers_create_in_bulk_request_body_item.rb +4 -21
  1572. data/lib/VoucherifySdk/models/loyalties_tiers_earning_rules_list_response_body.rb +6 -53
  1573. data/lib/VoucherifySdk/models/loyalties_tiers_get_response_body.rb +15 -79
  1574. data/lib/VoucherifySdk/models/loyalties_tiers_get_response_body_config.rb +209 -0
  1575. data/lib/VoucherifySdk/models/loyalties_tiers_get_response_body_config_points.rb +221 -0
  1576. data/lib/VoucherifySdk/models/loyalties_tiers_get_response_body_points.rb +221 -0
  1577. data/lib/VoucherifySdk/models/loyalties_tiers_list_response_body.rb +7 -54
  1578. data/lib/VoucherifySdk/models/loyalties_tiers_rewards_list_response_body.rb +6 -33
  1579. data/lib/VoucherifySdk/models/loyalties_transfer_points.rb +5 -29
  1580. data/lib/VoucherifySdk/models/loyalties_update_campaign_request_body.rb +395 -0
  1581. data/lib/VoucherifySdk/models/loyalties_update_campaign_request_body_options.rb +209 -0
  1582. data/lib/VoucherifySdk/models/loyalties_update_campaign_response_body.rb +565 -0
  1583. data/lib/VoucherifySdk/models/loyalty_campaign.rb +564 -0
  1584. data/lib/VoucherifySdk/models/loyalty_campaign_voucher.rb +334 -0
  1585. data/lib/VoucherifySdk/models/loyalty_campaign_voucher_redemption.rb +210 -0
  1586. data/lib/VoucherifySdk/models/loyalty_card_transaction.rb +8 -60
  1587. data/lib/VoucherifySdk/models/loyalty_card_transaction_details.rb +327 -0
  1588. data/lib/VoucherifySdk/models/loyalty_card_transaction_details_balance.rb +306 -0
  1589. data/lib/VoucherifySdk/models/loyalty_card_transaction_details_balance_related_object.rb +253 -0
  1590. data/lib/VoucherifySdk/models/loyalty_card_transaction_details_custom_event.rb +221 -0
  1591. data/lib/VoucherifySdk/models/loyalty_card_transaction_details_earning_rule.rb +220 -0
  1592. data/lib/VoucherifySdk/models/loyalty_card_transaction_details_earning_rule_source.rb +210 -0
  1593. data/lib/VoucherifySdk/models/loyalty_card_transaction_details_event.rb +221 -0
  1594. data/lib/VoucherifySdk/models/loyalty_card_transaction_details_event_schema.rb +221 -0
  1595. data/lib/VoucherifySdk/models/loyalty_card_transaction_details_loyalty_tier.rb +219 -0
  1596. data/lib/VoucherifySdk/models/loyalty_card_transaction_details_order.rb +221 -0
  1597. data/lib/VoucherifySdk/models/loyalty_card_transaction_details_redemption.rb +210 -0
  1598. data/lib/VoucherifySdk/models/loyalty_card_transaction_details_reward.rb +221 -0
  1599. data/lib/VoucherifySdk/models/loyalty_card_transaction_details_rollback.rb +210 -0
  1600. data/lib/VoucherifySdk/models/loyalty_card_transaction_details_segment.rb +219 -0
  1601. data/lib/VoucherifySdk/models/loyalty_card_transactions_type.rb +1 -2
  1602. data/lib/VoucherifySdk/models/loyalty_member.rb +503 -0
  1603. data/lib/VoucherifySdk/models/loyalty_member_loyalty_card.rb +243 -0
  1604. data/lib/VoucherifySdk/models/loyalty_member_publish.rb +234 -0
  1605. data/lib/VoucherifySdk/models/loyalty_member_redemption.rb +256 -0
  1606. data/lib/VoucherifySdk/models/loyalty_tier.rb +14 -78
  1607. data/lib/VoucherifySdk/models/loyalty_tier_base.rb +4 -21
  1608. data/lib/VoucherifySdk/models/loyalty_tier_base_points.rb +2 -7
  1609. data/lib/VoucherifySdk/models/loyalty_tier_config.rb +209 -0
  1610. data/lib/VoucherifySdk/models/loyalty_tier_config_points.rb +221 -0
  1611. data/lib/VoucherifySdk/models/loyalty_tier_expiration.rb +9 -37
  1612. data/lib/VoucherifySdk/models/loyalty_tier_points.rb +221 -0
  1613. data/lib/VoucherifySdk/models/loyalty_tiers_expiration_all.rb +4 -48
  1614. data/lib/VoucherifySdk/models/loyalty_tiers_expiration_all_expiration_date.rb +2 -31
  1615. data/lib/VoucherifySdk/models/loyalty_tiers_expiration_all_expiration_date_rounding.rb +4 -37
  1616. data/lib/VoucherifySdk/models/loyalty_tiers_expiration_all_start_date.rb +1 -24
  1617. data/lib/VoucherifySdk/models/management_project.rb +479 -0
  1618. data/lib/VoucherifySdk/models/management_project_api_usage_notifications.rb +253 -0
  1619. data/lib/VoucherifySdk/models/management_project_default_code_config.rb +210 -0
  1620. data/lib/VoucherifySdk/models/management_project_limits.rb +223 -0
  1621. data/lib/VoucherifySdk/models/management_project_limits_api_calls_item.rb +219 -0
  1622. data/lib/VoucherifySdk/models/management_project_limits_bulk_api_calls_item.rb +219 -0
  1623. data/lib/VoucherifySdk/models/management_project_webhooks_callout_notifications.rb +219 -0
  1624. data/lib/VoucherifySdk/models/management_project_webhooks_callout_notifications_distributions.rb +234 -0
  1625. data/lib/VoucherifySdk/models/management_project_webhooks_callout_notifications_webhooks.rb +234 -0
  1626. data/lib/VoucherifySdk/models/management_projects_branding.rb +250 -0
  1627. data/lib/VoucherifySdk/models/management_projects_branding_address.rb +254 -0
  1628. data/lib/VoucherifySdk/models/management_projects_branding_brand.rb +254 -0
  1629. data/lib/VoucherifySdk/models/management_projects_branding_cockpits.rb +311 -0
  1630. data/lib/VoucherifySdk/models/management_projects_branding_contact.rb +221 -0
  1631. data/lib/VoucherifySdk/models/management_projects_branding_create_request_body.rb +239 -0
  1632. data/lib/VoucherifySdk/models/management_projects_branding_create_request_body_address.rb +254 -0
  1633. data/lib/VoucherifySdk/models/management_projects_branding_create_request_body_brand.rb +256 -0
  1634. data/lib/VoucherifySdk/models/management_projects_branding_create_request_body_cockpits.rb +325 -0
  1635. data/lib/VoucherifySdk/models/management_projects_branding_create_request_body_contact.rb +221 -0
  1636. data/lib/VoucherifySdk/models/management_projects_branding_create_response_body.rb +250 -0
  1637. data/lib/VoucherifySdk/models/management_projects_branding_create_response_body_address.rb +254 -0
  1638. data/lib/VoucherifySdk/models/management_projects_branding_create_response_body_brand.rb +254 -0
  1639. data/lib/VoucherifySdk/models/management_projects_branding_create_response_body_cockpits.rb +311 -0
  1640. data/lib/VoucherifySdk/models/management_projects_branding_create_response_body_contact.rb +221 -0
  1641. data/lib/VoucherifySdk/models/management_projects_branding_get_response_body.rb +250 -0
  1642. data/lib/VoucherifySdk/models/management_projects_branding_get_response_body_address.rb +254 -0
  1643. data/lib/VoucherifySdk/models/management_projects_branding_get_response_body_brand.rb +254 -0
  1644. data/lib/VoucherifySdk/models/management_projects_branding_get_response_body_cockpits.rb +311 -0
  1645. data/lib/VoucherifySdk/models/management_projects_branding_get_response_body_contact.rb +221 -0
  1646. data/lib/VoucherifySdk/models/management_projects_branding_list_response_body.rb +275 -0
  1647. data/lib/VoucherifySdk/models/management_projects_branding_update_request_body.rb +238 -0
  1648. data/lib/VoucherifySdk/models/management_projects_branding_update_request_body_address.rb +254 -0
  1649. data/lib/VoucherifySdk/models/management_projects_branding_update_request_body_brand.rb +254 -0
  1650. data/lib/VoucherifySdk/models/management_projects_branding_update_request_body_cockpits.rb +311 -0
  1651. data/lib/VoucherifySdk/models/management_projects_branding_update_request_body_contact.rb +221 -0
  1652. data/lib/VoucherifySdk/models/management_projects_branding_update_response_body.rb +250 -0
  1653. data/lib/VoucherifySdk/models/management_projects_branding_update_response_body_address.rb +254 -0
  1654. data/lib/VoucherifySdk/models/management_projects_branding_update_response_body_brand.rb +254 -0
  1655. data/lib/VoucherifySdk/models/management_projects_branding_update_response_body_cockpits.rb +311 -0
  1656. data/lib/VoucherifySdk/models/management_projects_branding_update_response_body_contact.rb +221 -0
  1657. data/lib/VoucherifySdk/models/management_projects_create_request_body.rb +440 -0
  1658. data/lib/VoucherifySdk/models/management_projects_create_request_body_api_usage_notifications.rb +244 -0
  1659. data/lib/VoucherifySdk/models/management_projects_create_request_body_users_item.rb +236 -0
  1660. data/lib/VoucherifySdk/models/management_projects_create_request_body_webhooks_callout_notifications.rb +219 -0
  1661. data/lib/VoucherifySdk/models/management_projects_create_request_body_webhooks_callout_notifications_distributions.rb +234 -0
  1662. data/lib/VoucherifySdk/models/management_projects_create_request_body_webhooks_callout_notifications_webhooks.rb +234 -0
  1663. data/lib/VoucherifySdk/models/management_projects_create_response_body.rb +480 -0
  1664. data/lib/VoucherifySdk/models/management_projects_create_response_body_api_usage_notifications.rb +253 -0
  1665. data/lib/VoucherifySdk/models/management_projects_create_response_body_client_side_key.rb +221 -0
  1666. data/lib/VoucherifySdk/models/management_projects_create_response_body_server_side_key.rb +221 -0
  1667. data/lib/VoucherifySdk/models/management_projects_create_response_body_webhooks_callout_notifications.rb +219 -0
  1668. data/lib/VoucherifySdk/models/management_projects_create_response_body_webhooks_callout_notifications_distributions.rb +234 -0
  1669. data/lib/VoucherifySdk/models/management_projects_create_response_body_webhooks_callout_notifications_webhooks.rb +234 -0
  1670. data/lib/VoucherifySdk/models/management_projects_custom_event_schema.rb +290 -0
  1671. data/lib/VoucherifySdk/models/management_projects_custom_event_schema_schema.rb +212 -0
  1672. data/lib/VoucherifySdk/models/management_projects_custom_event_schemas_create_request_body.rb +220 -0
  1673. data/lib/VoucherifySdk/models/management_projects_custom_event_schemas_create_request_body_schema.rb +212 -0
  1674. data/lib/VoucherifySdk/models/management_projects_custom_event_schemas_create_request_body_schema_properties_entry.rb +267 -0
  1675. data/lib/VoucherifySdk/models/management_projects_custom_event_schemas_create_response_body.rb +290 -0
  1676. data/lib/VoucherifySdk/models/management_projects_custom_event_schemas_create_response_body_schema.rb +212 -0
  1677. data/lib/VoucherifySdk/models/management_projects_custom_event_schemas_get_response_body.rb +290 -0
  1678. data/lib/VoucherifySdk/models/management_projects_custom_event_schemas_get_response_body_schema.rb +212 -0
  1679. data/lib/VoucherifySdk/models/management_projects_custom_event_schemas_list_response_body.rb +275 -0
  1680. data/lib/VoucherifySdk/models/management_projects_custom_event_schemas_update_request_body.rb +209 -0
  1681. data/lib/VoucherifySdk/models/management_projects_custom_event_schemas_update_request_body_schema.rb +212 -0
  1682. data/lib/VoucherifySdk/models/management_projects_custom_event_schemas_update_response_body.rb +290 -0
  1683. data/lib/VoucherifySdk/models/management_projects_custom_event_schemas_update_response_body_schema.rb +212 -0
  1684. data/lib/VoucherifySdk/models/management_projects_get_response_body.rb +479 -0
  1685. data/lib/VoucherifySdk/models/management_projects_get_response_body_api_usage_notifications.rb +253 -0
  1686. data/lib/VoucherifySdk/models/management_projects_get_response_body_default_code_config.rb +210 -0
  1687. data/lib/VoucherifySdk/models/management_projects_get_response_body_limits.rb +223 -0
  1688. data/lib/VoucherifySdk/models/management_projects_get_response_body_limits_api_calls_item.rb +219 -0
  1689. data/lib/VoucherifySdk/models/management_projects_get_response_body_limits_bulk_api_calls_item.rb +219 -0
  1690. data/lib/VoucherifySdk/models/management_projects_get_response_body_webhooks_callout_notifications.rb +219 -0
  1691. data/lib/VoucherifySdk/models/management_projects_get_response_body_webhooks_callout_notifications_distributions.rb +234 -0
  1692. data/lib/VoucherifySdk/models/management_projects_get_response_body_webhooks_callout_notifications_webhooks.rb +234 -0
  1693. data/lib/VoucherifySdk/models/management_projects_list_response_body.rb +275 -0
  1694. data/lib/VoucherifySdk/models/management_projects_metadata_schema.rb +280 -0
  1695. data/lib/VoucherifySdk/models/management_projects_metadata_schema_definition.rb +380 -0
  1696. data/lib/VoucherifySdk/models/management_projects_metadata_schemas_create_request_body.rb +236 -0
  1697. data/lib/VoucherifySdk/models/management_projects_metadata_schemas_create_response_body.rb +280 -0
  1698. data/lib/VoucherifySdk/models/management_projects_metadata_schemas_get_response_body.rb +280 -0
  1699. data/lib/VoucherifySdk/models/management_projects_metadata_schemas_list_response_body.rb +275 -0
  1700. data/lib/VoucherifySdk/models/management_projects_metadata_schemas_update_request_body.rb +223 -0
  1701. data/lib/VoucherifySdk/models/management_projects_metadata_schemas_update_response_body.rb +280 -0
  1702. data/lib/VoucherifySdk/models/management_projects_stacking_rules.rb +425 -0
  1703. data/lib/VoucherifySdk/models/management_projects_stacking_rules_create_request_body.rb +392 -0
  1704. data/lib/VoucherifySdk/models/management_projects_stacking_rules_create_response_body.rb +425 -0
  1705. data/lib/VoucherifySdk/models/management_projects_stacking_rules_get_response_body.rb +425 -0
  1706. data/lib/VoucherifySdk/models/management_projects_stacking_rules_list_response_body.rb +275 -0
  1707. data/lib/VoucherifySdk/models/management_projects_stacking_rules_update_request_body.rb +392 -0
  1708. data/lib/VoucherifySdk/models/management_projects_stacking_rules_update_response_body.rb +425 -0
  1709. data/lib/VoucherifySdk/models/management_projects_templates_campaigns_copy_create_request_body.rb +232 -0
  1710. data/lib/VoucherifySdk/models/management_projects_templates_campaigns_copy_create_response_body.rb +293 -0
  1711. data/lib/VoucherifySdk/models/management_projects_templates_campaigns_list_response_body.rb +297 -0
  1712. data/lib/VoucherifySdk/models/management_projects_update_request_body.rb +400 -0
  1713. data/lib/VoucherifySdk/models/management_projects_update_request_body_api_usage_notifications.rb +244 -0
  1714. data/lib/VoucherifySdk/models/management_projects_update_request_body_default_code_config.rb +210 -0
  1715. data/lib/VoucherifySdk/models/management_projects_update_request_body_webhooks_callout_notifications.rb +219 -0
  1716. data/lib/VoucherifySdk/models/management_projects_update_request_body_webhooks_callout_notifications_distributions.rb +234 -0
  1717. data/lib/VoucherifySdk/models/management_projects_update_request_body_webhooks_callout_notifications_webhooks.rb +234 -0
  1718. data/lib/VoucherifySdk/models/management_projects_update_response_body.rb +479 -0
  1719. data/lib/VoucherifySdk/models/management_projects_update_response_body_api_usage_notifications.rb +253 -0
  1720. data/lib/VoucherifySdk/models/management_projects_update_response_body_default_code_config.rb +210 -0
  1721. data/lib/VoucherifySdk/models/management_projects_update_response_body_limits.rb +223 -0
  1722. data/lib/VoucherifySdk/models/management_projects_update_response_body_limits_api_calls_item.rb +219 -0
  1723. data/lib/VoucherifySdk/models/management_projects_update_response_body_limits_bulk_api_calls_item.rb +219 -0
  1724. data/lib/VoucherifySdk/models/management_projects_update_response_body_webhooks_callout_notifications.rb +219 -0
  1725. data/lib/VoucherifySdk/models/management_projects_update_response_body_webhooks_callout_notifications_distributions.rb +234 -0
  1726. data/lib/VoucherifySdk/models/management_projects_update_response_body_webhooks_callout_notifications_webhooks.rb +234 -0
  1727. data/lib/VoucherifySdk/models/management_projects_users_assign_request_body.rb +231 -0
  1728. data/lib/VoucherifySdk/models/management_projects_users_assign_response_body.rb +278 -0
  1729. data/lib/VoucherifySdk/models/management_projects_users_get_user_response_body.rb +278 -0
  1730. data/lib/VoucherifySdk/models/management_projects_users_invite_create_request_body.rb +245 -0
  1731. data/lib/VoucherifySdk/models/management_projects_users_list_response_body.rb +275 -0
  1732. data/lib/VoucherifySdk/models/management_projects_users_update_role_request_body.rb +209 -0
  1733. data/lib/VoucherifySdk/models/management_projects_users_update_role_response_body.rb +278 -0
  1734. data/lib/VoucherifySdk/models/management_projects_webhook.rb +295 -0
  1735. data/lib/VoucherifySdk/models/management_projects_webhooks_create_request_body.rb +258 -0
  1736. data/lib/VoucherifySdk/models/management_projects_webhooks_create_response_body.rb +295 -0
  1737. data/lib/VoucherifySdk/models/management_projects_webhooks_get_response_body.rb +295 -0
  1738. data/lib/VoucherifySdk/models/management_projects_webhooks_list_response_body.rb +275 -0
  1739. data/lib/VoucherifySdk/models/management_projects_webhooks_update_request_body.rb +258 -0
  1740. data/lib/VoucherifySdk/models/management_projects_webhooks_update_response_body.rb +295 -0
  1741. data/lib/VoucherifySdk/models/mapping_points.rb +223 -74
  1742. data/lib/VoucherifySdk/models/member_activity.rb +254 -0
  1743. data/lib/VoucherifySdk/models/metadata_schema_definition_deprecated.rb +380 -0
  1744. data/lib/VoucherifySdk/models/metadata_schema_deprecated.rb +280 -0
  1745. data/lib/VoucherifySdk/models/metadata_schemas_get_response_body.rb +280 -0
  1746. data/lib/VoucherifySdk/models/metadata_schemas_list_response_body.rb +275 -0
  1747. data/lib/VoucherifySdk/models/order.rb +45 -98
  1748. data/lib/VoucherifySdk/models/order_calculated.rb +66 -94
  1749. data/lib/VoucherifySdk/models/order_calculated_item.rb +455 -0
  1750. data/lib/VoucherifySdk/models/order_calculated_item_product.rb +265 -0
  1751. data/lib/VoucherifySdk/models/order_calculated_item_sku.rb +254 -0
  1752. data/lib/VoucherifySdk/models/order_item.rb +19 -22
  1753. data/lib/VoucherifySdk/models/order_item_product.rb +8 -9
  1754. data/lib/VoucherifySdk/models/order_item_sku.rb +6 -8
  1755. data/lib/VoucherifySdk/models/order_redemptions_entry.rb +292 -0
  1756. data/lib/VoucherifySdk/models/orders_create_request_body.rb +53 -67
  1757. data/lib/VoucherifySdk/models/orders_create_response_body.rb +66 -95
  1758. data/lib/VoucherifySdk/models/orders_export_create_request_body.rb +2 -8
  1759. data/lib/VoucherifySdk/models/orders_export_create_request_body_parameters.rb +1 -7
  1760. data/lib/VoucherifySdk/models/orders_export_create_response_body.rb +10 -85
  1761. data/lib/VoucherifySdk/models/orders_export_create_response_body_parameters.rb +253 -0
  1762. data/lib/VoucherifySdk/models/orders_get_response_body.rb +65 -94
  1763. data/lib/VoucherifySdk/models/orders_import_create_request_body_item.rb +69 -67
  1764. data/lib/VoucherifySdk/models/orders_import_create_response_body.rb +2 -22
  1765. data/lib/VoucherifySdk/models/orders_list_response_body.rb +7 -54
  1766. data/lib/VoucherifySdk/models/orders_update_request_body.rb +62 -67
  1767. data/lib/VoucherifySdk/models/orders_update_response_body.rb +66 -95
  1768. data/lib/VoucherifySdk/models/parameter_activity_category.rb +40 -0
  1769. data/lib/VoucherifySdk/models/parameter_campaign_type.rb +1 -2
  1770. data/lib/VoucherifySdk/models/parameter_created_before_after.rb +4 -9
  1771. data/lib/VoucherifySdk/models/parameter_filters_list_bin.rb +269 -0
  1772. data/lib/VoucherifySdk/models/parameter_filters_list_bin_id.rb +208 -0
  1773. data/lib/VoucherifySdk/models/parameter_filters_list_bin_resource_id.rb +208 -0
  1774. data/lib/VoucherifySdk/models/parameter_filters_list_bin_resource_name.rb +208 -0
  1775. data/lib/VoucherifySdk/models/parameter_filters_list_bin_resource_type.rb +208 -0
  1776. data/lib/VoucherifySdk/models/parameter_filters_list_bin_resource_type_conditions.rb +316 -0
  1777. data/lib/VoucherifySdk/models/parameter_filters_list_campaigns.rb +289 -0
  1778. data/lib/VoucherifySdk/models/parameter_filters_list_campaigns_campaign_status.rb +208 -0
  1779. data/lib/VoucherifySdk/models/parameter_filters_list_campaigns_campaign_status_conditions.rb +316 -0
  1780. data/lib/VoucherifySdk/models/parameter_filters_list_campaigns_categories.rb +208 -0
  1781. data/lib/VoucherifySdk/models/parameter_filters_list_campaigns_category_ids.rb +208 -0
  1782. data/lib/VoucherifySdk/models/parameter_filters_list_campaigns_is_referral_code.rb +247 -0
  1783. data/lib/VoucherifySdk/models/parameter_filters_list_campaigns_validity_timeframe.rb +208 -0
  1784. data/lib/VoucherifySdk/models/parameter_filters_list_campaigns_voucher_type.rb +208 -0
  1785. data/lib/VoucherifySdk/models/parameter_filters_list_customer_redeemables.rb +309 -0
  1786. data/lib/VoucherifySdk/models/parameter_filters_list_customer_redeemables_campaign_id.rb +208 -0
  1787. data/lib/VoucherifySdk/models/parameter_filters_list_customer_redeemables_campaign_type.rb +208 -0
  1788. data/lib/VoucherifySdk/models/parameter_filters_list_customer_redeemables_campaign_type_conditions.rb +316 -0
  1789. data/lib/VoucherifySdk/models/parameter_filters_list_customer_redeemables_created_at.rb +208 -0
  1790. data/lib/VoucherifySdk/models/parameter_filters_list_customer_redeemables_holder_role.rb +208 -0
  1791. data/lib/VoucherifySdk/models/parameter_filters_list_customer_redeemables_holder_role_conditions.rb +316 -0
  1792. data/lib/VoucherifySdk/models/parameter_filters_list_customer_redeemables_id.rb +208 -0
  1793. data/lib/VoucherifySdk/models/parameter_filters_list_customer_redeemables_redeemable_id.rb +208 -0
  1794. data/lib/VoucherifySdk/models/parameter_filters_list_customer_redeemables_redeemable_object.rb +208 -0
  1795. data/lib/VoucherifySdk/models/parameter_filters_list_customer_redeemables_redeemable_object_conditions.rb +320 -0
  1796. data/lib/VoucherifySdk/models/parameter_filters_list_customer_redeemables_voucher_type.rb +208 -0
  1797. data/lib/VoucherifySdk/models/parameter_filters_list_customer_redeemables_voucher_type_conditions.rb +316 -0
  1798. data/lib/VoucherifySdk/models/parameter_filters_list_locations.rb +228 -0
  1799. data/lib/VoucherifySdk/models/parameter_filters_list_locations_created_at.rb +208 -0
  1800. data/lib/VoucherifySdk/models/parameter_filters_list_locations_name.rb +207 -0
  1801. data/lib/VoucherifySdk/models/parameter_filters_list_locations_updated_at.rb +208 -0
  1802. data/lib/VoucherifySdk/models/parameter_filters_list_publications.rb +319 -0
  1803. data/lib/VoucherifySdk/models/parameter_filters_list_publications_campaign_name.rb +208 -0
  1804. data/lib/VoucherifySdk/models/parameter_filters_list_publications_customer_id.rb +208 -0
  1805. data/lib/VoucherifySdk/models/parameter_filters_list_publications_failure_code.rb +208 -0
  1806. data/lib/VoucherifySdk/models/parameter_filters_list_publications_is_referral_code.rb +208 -0
  1807. data/lib/VoucherifySdk/models/parameter_filters_list_publications_parent_object_id.rb +208 -0
  1808. data/lib/VoucherifySdk/models/parameter_filters_list_publications_related_object_id.rb +208 -0
  1809. data/lib/VoucherifySdk/models/parameter_filters_list_publications_result.rb +208 -0
  1810. data/lib/VoucherifySdk/models/parameter_filters_list_publications_source_id.rb +208 -0
  1811. data/lib/VoucherifySdk/models/parameter_filters_list_publications_voucher_type.rb +208 -0
  1812. data/lib/VoucherifySdk/models/parameter_filters_list_redemptions.rb +45 -11
  1813. data/lib/VoucherifySdk/models/parameter_filters_list_redemptions_campaign_name.rb +4 -42
  1814. data/lib/VoucherifySdk/models/parameter_filters_list_redemptions_customer_id.rb +4 -42
  1815. data/lib/VoucherifySdk/models/parameter_filters_list_redemptions_failure_code.rb +4 -42
  1816. data/lib/VoucherifySdk/models/parameter_filters_list_redemptions_object.rb +4 -42
  1817. data/lib/VoucherifySdk/models/parameter_filters_list_redemptions_parent_redemption_id.rb +4 -42
  1818. data/lib/VoucherifySdk/models/parameter_filters_list_redemptions_related_object_id.rb +4 -42
  1819. data/lib/VoucherifySdk/models/parameter_filters_list_redemptions_related_object_parent_id.rb +4 -42
  1820. data/lib/VoucherifySdk/models/parameter_filters_list_redemptions_result.rb +4 -42
  1821. data/lib/VoucherifySdk/models/parameter_filters_list_redemptions_user_login.rb +4 -42
  1822. data/lib/VoucherifySdk/models/parameter_filters_list_redemptions_voucher_code.rb +4 -42
  1823. data/lib/VoucherifySdk/models/parameter_filters_list_referrals_redeemable_holders.rb +269 -0
  1824. data/lib/VoucherifySdk/models/parameter_filters_list_referrals_redeemable_holders_created_at.rb +208 -0
  1825. data/lib/VoucherifySdk/models/parameter_filters_list_referrals_redeemable_holders_customer_id.rb +208 -0
  1826. data/lib/VoucherifySdk/models/parameter_filters_list_referrals_redeemable_holders_holder_role.rb +208 -0
  1827. data/lib/VoucherifySdk/models/parameter_filters_list_referrals_redeemable_holders_holder_role_conditions.rb +316 -0
  1828. data/lib/VoucherifySdk/models/parameter_filters_list_referrals_redeemable_holders_id.rb +208 -0
  1829. data/lib/VoucherifySdk/models/parameter_filters_list_templates.rb +259 -0
  1830. data/lib/VoucherifySdk/models/parameter_filters_list_templates_campaign_type.rb +209 -0
  1831. data/lib/VoucherifySdk/models/parameter_filters_list_templates_campaign_type_conditions.rb +317 -0
  1832. data/lib/VoucherifySdk/models/parameter_filters_list_templates_id.rb +208 -0
  1833. data/lib/VoucherifySdk/models/parameter_filters_list_templates_name.rb +208 -0
  1834. data/lib/VoucherifySdk/models/parameter_order_created_at.rb +40 -0
  1835. data/lib/VoucherifySdk/models/parameter_order_list_bin.rb +40 -0
  1836. data/lib/VoucherifySdk/models/parameter_order_list_earning_rules.rb +42 -0
  1837. data/lib/VoucherifySdk/models/parameter_order_list_locations.rb +42 -0
  1838. data/lib/VoucherifySdk/models/parameter_order_list_promotion_tiers.rb +42 -0
  1839. data/lib/VoucherifySdk/models/parameter_order_list_promotion_tiers_client_side.rb +42 -0
  1840. data/lib/VoucherifySdk/models/parameter_order_list_redeemables.rb +40 -0
  1841. data/lib/VoucherifySdk/models/parameter_order_list_transactions.rb +40 -0
  1842. data/lib/VoucherifySdk/models/parameter_order_vouchers.rb +44 -0
  1843. data/lib/VoucherifySdk/models/parameter_templates_list.rb +40 -0
  1844. data/lib/VoucherifySdk/models/parameter_updated_before_after.rb +4 -9
  1845. data/lib/VoucherifySdk/models/parameter_voucher_type_list_publications.rb +1 -2
  1846. data/lib/VoucherifySdk/models/product.rb +8 -59
  1847. data/lib/VoucherifySdk/models/product_collections_create_request_body.rb +238 -75
  1848. data/lib/VoucherifySdk/models/product_collections_create_request_body_products_item.rb +266 -0
  1849. data/lib/VoucherifySdk/models/product_collections_create_response_body.rb +13 -72
  1850. data/lib/VoucherifySdk/models/product_collections_create_response_body_products_item.rb +266 -0
  1851. data/lib/VoucherifySdk/models/product_collections_get_response_body.rb +13 -72
  1852. data/lib/VoucherifySdk/models/product_collections_get_response_body_products_item.rb +266 -0
  1853. data/lib/VoucherifySdk/models/product_collections_item.rb +11 -63
  1854. data/lib/VoucherifySdk/models/product_collections_item_products_item.rb +1 -18
  1855. data/lib/VoucherifySdk/models/product_collections_list_response_body.rb +6 -60
  1856. data/lib/VoucherifySdk/models/product_collections_products_list_response_body.rb +7 -42
  1857. data/lib/VoucherifySdk/models/product_collections_products_list_response_body_data_item.rb +362 -0
  1858. data/lib/VoucherifySdk/models/product_without_skus.rb +8 -52
  1859. data/lib/VoucherifySdk/models/products_create_request_body.rb +8 -8
  1860. data/lib/VoucherifySdk/models/products_create_response_body.rb +9 -60
  1861. data/lib/VoucherifySdk/models/products_get_response_body.rb +9 -60
  1862. data/lib/VoucherifySdk/models/products_import_csv_create_response_body.rb +2 -22
  1863. data/lib/VoucherifySdk/models/products_list_response_body.rb +6 -33
  1864. data/lib/VoucherifySdk/models/products_metadata_update_in_bulk_request_body.rb +3 -22
  1865. data/lib/VoucherifySdk/models/products_metadata_update_in_bulk_response_body.rb +2 -22
  1866. data/lib/VoucherifySdk/models/products_skus_create_request_body.rb +9 -8
  1867. data/lib/VoucherifySdk/models/products_skus_create_response_body.rb +10 -78
  1868. data/lib/VoucherifySdk/models/products_skus_list_response_body.rb +6 -40
  1869. data/lib/VoucherifySdk/models/products_skus_update_request_body.rb +7 -8
  1870. data/lib/VoucherifySdk/models/products_skus_update_response_body.rb +10 -78
  1871. data/lib/VoucherifySdk/models/products_update_in_bulk_request_body.rb +7 -15
  1872. data/lib/VoucherifySdk/models/products_update_in_bulk_response_body.rb +2 -22
  1873. data/lib/VoucherifySdk/models/products_update_request_body.rb +6 -8
  1874. data/lib/VoucherifySdk/models/products_update_response_body.rb +9 -60
  1875. data/lib/VoucherifySdk/models/promotion_stack.rb +12 -77
  1876. data/lib/VoucherifySdk/models/promotion_stack_base.rb +2 -21
  1877. data/lib/VoucherifySdk/models/promotion_stack_base_tiers.rb +5 -41
  1878. data/lib/VoucherifySdk/models/promotion_stack_tiers.rb +253 -0
  1879. data/lib/VoucherifySdk/models/promotion_tier.rb +55 -13
  1880. data/lib/VoucherifySdk/models/promotion_tier_action.rb +0 -7
  1881. data/lib/VoucherifySdk/models/promotion_tier_campaign.rb +41 -11
  1882. data/lib/VoucherifySdk/models/promotion_tier_create_params.rb +46 -18
  1883. data/lib/VoucherifySdk/models/promotion_tier_create_params_action.rb +208 -0
  1884. data/lib/VoucherifySdk/models/promotion_tier_summary.rb +2 -7
  1885. data/lib/VoucherifySdk/models/promotion_tier_summary_orders.rb +2 -7
  1886. data/lib/VoucherifySdk/models/promotion_tier_summary_redemptions.rb +1 -7
  1887. data/lib/VoucherifySdk/models/promotion_tiers_list.rb +7 -9
  1888. data/lib/VoucherifySdk/models/promotions_stacks_create_request_body.rb +5 -30
  1889. data/lib/VoucherifySdk/models/promotions_stacks_create_request_body_tiers.rb +253 -0
  1890. data/lib/VoucherifySdk/models/promotions_stacks_create_response_body.rb +11 -77
  1891. data/lib/VoucherifySdk/models/promotions_stacks_create_response_body_tiers.rb +253 -0
  1892. data/lib/VoucherifySdk/models/promotions_stacks_get_response_body.rb +13 -78
  1893. data/lib/VoucherifySdk/models/promotions_stacks_get_response_body_tiers.rb +253 -0
  1894. data/lib/VoucherifySdk/models/promotions_stacks_list_response_body.rb +8 -69
  1895. data/lib/VoucherifySdk/models/promotions_stacks_update_request_body.rb +4 -8
  1896. data/lib/VoucherifySdk/models/promotions_stacks_update_request_body_tiers.rb +4 -19
  1897. data/lib/VoucherifySdk/models/promotions_stacks_update_response_body.rb +13 -85
  1898. data/lib/VoucherifySdk/models/promotions_stacks_update_response_body_tiers.rb +253 -0
  1899. data/lib/VoucherifySdk/models/promotions_tiers_create_request_body.rb +369 -0
  1900. data/lib/VoucherifySdk/models/promotions_tiers_create_request_body_action.rb +208 -0
  1901. data/lib/VoucherifySdk/models/promotions_tiers_create_response_body.rb +458 -0
  1902. data/lib/VoucherifySdk/models/promotions_tiers_create_response_body_action.rb +208 -0
  1903. data/lib/VoucherifySdk/models/promotions_tiers_create_response_body_campaign.rb +319 -0
  1904. data/lib/VoucherifySdk/models/promotions_tiers_create_response_body_summary.rb +219 -0
  1905. data/lib/VoucherifySdk/models/promotions_tiers_create_response_body_summary_orders.rb +221 -0
  1906. data/lib/VoucherifySdk/models/promotions_tiers_create_response_body_summary_redemptions.rb +210 -0
  1907. data/lib/VoucherifySdk/models/promotions_tiers_disable_response_body.rb +59 -24
  1908. data/lib/VoucherifySdk/models/promotions_tiers_disable_response_body_action.rb +208 -0
  1909. data/lib/VoucherifySdk/models/promotions_tiers_disable_response_body_campaign.rb +319 -0
  1910. data/lib/VoucherifySdk/models/promotions_tiers_disable_response_body_summary.rb +219 -0
  1911. data/lib/VoucherifySdk/models/promotions_tiers_disable_response_body_summary_orders.rb +221 -0
  1912. data/lib/VoucherifySdk/models/promotions_tiers_disable_response_body_summary_redemptions.rb +210 -0
  1913. data/lib/VoucherifySdk/models/promotions_tiers_enable_response_body.rb +59 -24
  1914. data/lib/VoucherifySdk/models/promotions_tiers_enable_response_body_action.rb +208 -0
  1915. data/lib/VoucherifySdk/models/promotions_tiers_enable_response_body_campaign.rb +319 -0
  1916. data/lib/VoucherifySdk/models/promotions_tiers_enable_response_body_summary.rb +219 -0
  1917. data/lib/VoucherifySdk/models/promotions_tiers_enable_response_body_summary_orders.rb +221 -0
  1918. data/lib/VoucherifySdk/models/promotions_tiers_enable_response_body_summary_redemptions.rb +210 -0
  1919. data/lib/VoucherifySdk/models/promotions_tiers_get_response_body.rb +59 -24
  1920. data/lib/VoucherifySdk/models/promotions_tiers_get_response_body_action.rb +208 -0
  1921. data/lib/VoucherifySdk/models/promotions_tiers_get_response_body_campaign.rb +319 -0
  1922. data/lib/VoucherifySdk/models/promotions_tiers_get_response_body_summary.rb +219 -0
  1923. data/lib/VoucherifySdk/models/promotions_tiers_get_response_body_summary_orders.rb +221 -0
  1924. data/lib/VoucherifySdk/models/promotions_tiers_get_response_body_summary_redemptions.rb +210 -0
  1925. data/lib/VoucherifySdk/models/promotions_tiers_list_response_body.rb +8 -17
  1926. data/lib/VoucherifySdk/models/promotions_tiers_update_request_body.rb +358 -0
  1927. data/lib/VoucherifySdk/models/promotions_tiers_update_request_body_action.rb +208 -0
  1928. data/lib/VoucherifySdk/models/promotions_tiers_update_response_body.rb +458 -0
  1929. data/lib/VoucherifySdk/models/promotions_tiers_update_response_body_action.rb +208 -0
  1930. data/lib/VoucherifySdk/models/promotions_tiers_update_response_body_campaign.rb +319 -0
  1931. data/lib/VoucherifySdk/models/promotions_tiers_update_response_body_summary.rb +219 -0
  1932. data/lib/VoucherifySdk/models/promotions_tiers_update_response_body_summary_orders.rb +221 -0
  1933. data/lib/VoucherifySdk/models/promotions_tiers_update_response_body_summary_redemptions.rb +210 -0
  1934. data/lib/VoucherifySdk/models/publications_create_request_body.rb +229 -76
  1935. data/lib/VoucherifySdk/models/publications_create_response_body.rb +346 -78
  1936. data/lib/VoucherifySdk/models/publications_list_response_body.rb +7 -34
  1937. data/lib/VoucherifySdk/models/publications_list_response_body_publications_item.rb +358 -79
  1938. data/lib/VoucherifySdk/models/publications_list_response_body_publications_item_metadata.rb +231 -0
  1939. data/lib/VoucherifySdk/models/qualifications_check_eligibility_request_body.rb +6 -42
  1940. data/lib/VoucherifySdk/models/qualifications_check_eligibility_response_body.rb +2 -8
  1941. data/lib/VoucherifySdk/models/qualifications_field_conditions.rb +0 -7
  1942. data/lib/VoucherifySdk/models/qualifications_filters_condition.rb +24 -17
  1943. data/lib/VoucherifySdk/models/qualifications_option.rb +5 -32
  1944. data/lib/VoucherifySdk/models/qualifications_option_filters.rb +25 -11
  1945. data/lib/VoucherifySdk/models/qualifications_option_filters_campaign_type.rb +209 -0
  1946. data/lib/VoucherifySdk/models/qualifications_option_filters_campaign_type_conditions.rb +247 -0
  1947. data/lib/VoucherifySdk/models/qualifications_option_filters_holder_role.rb +208 -0
  1948. data/lib/VoucherifySdk/models/qualifications_option_filters_holder_role_conditions.rb +273 -0
  1949. data/lib/VoucherifySdk/models/qualifications_option_filters_resource_type.rb +1 -7
  1950. data/lib/VoucherifySdk/models/qualifications_option_filters_resource_type_conditions.rb +13 -36
  1951. data/lib/VoucherifySdk/models/qualifications_redeemable.rb +13 -26
  1952. data/lib/VoucherifySdk/models/qualifications_redeemable_base.rb +12 -19
  1953. data/lib/VoucherifySdk/models/qualifications_redeemables.rb +9 -61
  1954. data/lib/VoucherifySdk/models/redeemable_gift.rb +2 -7
  1955. data/lib/VoucherifySdk/models/redeemable_holder.rb +354 -0
  1956. data/lib/VoucherifySdk/models/redeemable_loyalty_card.rb +6 -8
  1957. data/lib/VoucherifySdk/models/redeemable_result.rb +0 -7
  1958. data/lib/VoucherifySdk/models/redeemable_voucher.rb +524 -0
  1959. data/lib/VoucherifySdk/models/redeemable_voucher_gift.rb +256 -0
  1960. data/lib/VoucherifySdk/models/redeemable_voucher_loyalty_card.rb +243 -0
  1961. data/lib/VoucherifySdk/models/redeemable_voucher_publish.rb +234 -0
  1962. data/lib/VoucherifySdk/models/redeemable_voucher_redemption.rb +256 -0
  1963. data/lib/VoucherifySdk/models/redemption.rb +33 -133
  1964. data/lib/VoucherifySdk/models/redemption_channel.rb +5 -20
  1965. data/lib/VoucherifySdk/models/redemption_entry.rb +477 -0
  1966. data/lib/VoucherifySdk/models/redemption_entry_channel.rb +242 -0
  1967. data/lib/VoucherifySdk/models/redemption_entry_customer.rb +289 -0
  1968. data/lib/VoucherifySdk/models/redemption_entry_gift.rb +209 -0
  1969. data/lib/VoucherifySdk/models/redemption_entry_loyalty_card.rb +209 -0
  1970. data/lib/VoucherifySdk/models/redemption_entry_order.rb +466 -0
  1971. data/lib/VoucherifySdk/models/redemption_entry_order_customer.rb +246 -0
  1972. data/lib/VoucherifySdk/models/redemption_entry_order_referrer.rb +246 -0
  1973. data/lib/VoucherifySdk/models/redemption_entry_promotion_tier.rb +456 -0
  1974. data/lib/VoucherifySdk/models/redemption_entry_promotion_tier_action.rb +207 -0
  1975. data/lib/VoucherifySdk/models/redemption_entry_promotion_tier_campaign.rb +318 -0
  1976. data/lib/VoucherifySdk/models/redemption_entry_promotion_tier_summary.rb +218 -0
  1977. data/lib/VoucherifySdk/models/redemption_entry_promotion_tier_summary_orders.rb +220 -0
  1978. data/lib/VoucherifySdk/models/redemption_entry_promotion_tier_summary_redemptions.rb +209 -0
  1979. data/lib/VoucherifySdk/models/redemption_entry_related_redemptions.rb +222 -0
  1980. data/lib/VoucherifySdk/models/redemption_entry_related_redemptions_redemptions_item.rb +218 -0
  1981. data/lib/VoucherifySdk/models/redemption_entry_related_redemptions_rollbacks_item.rb +217 -0
  1982. data/lib/VoucherifySdk/models/redemption_entry_voucher.rb +540 -0
  1983. data/lib/VoucherifySdk/models/redemption_entry_voucher_gift.rb +255 -0
  1984. data/lib/VoucherifySdk/models/redemption_entry_voucher_loyalty_card.rb +242 -0
  1985. data/lib/VoucherifySdk/models/redemption_entry_voucher_publish.rb +233 -0
  1986. data/lib/VoucherifySdk/models/redemption_entry_voucher_redemption.rb +255 -0
  1987. data/lib/VoucherifySdk/models/redemption_gift.rb +3 -9
  1988. data/lib/VoucherifySdk/models/redemption_loyalty_card.rb +3 -9
  1989. data/lib/VoucherifySdk/models/redemption_related_redemptions.rb +3 -8
  1990. data/lib/VoucherifySdk/models/redemption_related_redemptions_redemptions_item.rb +218 -0
  1991. data/lib/VoucherifySdk/models/redemption_related_redemptions_rollbacks_item.rb +1 -8
  1992. data/lib/VoucherifySdk/models/redemption_reward_result.rb +24 -49
  1993. data/lib/VoucherifySdk/models/redemption_reward_result_parameters.rb +3 -7
  1994. data/lib/VoucherifySdk/models/redemption_reward_result_parameters_campaign.rb +3 -7
  1995. data/lib/VoucherifySdk/models/redemption_reward_result_parameters_coin.rb +2 -7
  1996. data/lib/VoucherifySdk/models/redemption_reward_result_parameters_product.rb +3 -8
  1997. data/lib/VoucherifySdk/models/redemption_rollback.rb +24 -124
  1998. data/lib/VoucherifySdk/models/redemption_rollback_channel.rb +245 -0
  1999. data/lib/VoucherifySdk/models/redemption_rollback_gift.rb +210 -0
  2000. data/lib/VoucherifySdk/models/redemption_rollback_loyalty_card.rb +210 -0
  2001. data/lib/VoucherifySdk/models/redemption_rollback_related_redemptions.rb +3 -8
  2002. data/lib/VoucherifySdk/models/redemption_rollback_related_redemptions_redemptions_item.rb +218 -0
  2003. data/lib/VoucherifySdk/models/redemption_rollback_related_redemptions_rollbacks_item.rb +2 -9
  2004. data/lib/VoucherifySdk/models/redemption_voucher.rb +542 -0
  2005. data/lib/VoucherifySdk/models/redemption_voucher_gift.rb +256 -0
  2006. data/lib/VoucherifySdk/models/redemption_voucher_loyalty_card.rb +243 -0
  2007. data/lib/VoucherifySdk/models/redemption_voucher_publish.rb +234 -0
  2008. data/lib/VoucherifySdk/models/redemption_voucher_redemption.rb +256 -0
  2009. data/lib/VoucherifySdk/models/redemptions_get_response_body.rb +449 -78
  2010. data/lib/VoucherifySdk/models/redemptions_get_response_body_channel.rb +242 -0
  2011. data/lib/VoucherifySdk/models/redemptions_get_response_body_customer.rb +289 -0
  2012. data/lib/VoucherifySdk/models/redemptions_get_response_body_gift.rb +209 -0
  2013. data/lib/VoucherifySdk/models/redemptions_get_response_body_loyalty_card.rb +209 -0
  2014. data/lib/VoucherifySdk/models/redemptions_get_response_body_order.rb +466 -0
  2015. data/lib/VoucherifySdk/models/redemptions_get_response_body_order_customer.rb +246 -0
  2016. data/lib/VoucherifySdk/models/redemptions_get_response_body_order_referrer.rb +246 -0
  2017. data/lib/VoucherifySdk/models/redemptions_get_response_body_promotion_tier.rb +456 -0
  2018. data/lib/VoucherifySdk/models/redemptions_get_response_body_promotion_tier_action.rb +207 -0
  2019. data/lib/VoucherifySdk/models/redemptions_get_response_body_promotion_tier_campaign.rb +318 -0
  2020. data/lib/VoucherifySdk/models/redemptions_get_response_body_promotion_tier_summary.rb +218 -0
  2021. data/lib/VoucherifySdk/models/redemptions_get_response_body_promotion_tier_summary_orders.rb +220 -0
  2022. data/lib/VoucherifySdk/models/redemptions_get_response_body_promotion_tier_summary_redemptions.rb +209 -0
  2023. data/lib/VoucherifySdk/models/redemptions_get_response_body_related_redemptions.rb +222 -0
  2024. data/lib/VoucherifySdk/models/redemptions_get_response_body_related_redemptions_redemptions_item.rb +218 -0
  2025. data/lib/VoucherifySdk/models/redemptions_get_response_body_related_redemptions_rollbacks_item.rb +217 -0
  2026. data/lib/VoucherifySdk/models/redemptions_get_response_body_voucher.rb +540 -0
  2027. data/lib/VoucherifySdk/models/redemptions_get_response_body_voucher_gift.rb +255 -0
  2028. data/lib/VoucherifySdk/models/redemptions_get_response_body_voucher_loyalty_card.rb +242 -0
  2029. data/lib/VoucherifySdk/models/redemptions_get_response_body_voucher_publish.rb +233 -0
  2030. data/lib/VoucherifySdk/models/redemptions_get_response_body_voucher_redemption.rb +255 -0
  2031. data/lib/VoucherifySdk/models/redemptions_list_response_body.rb +6 -33
  2032. data/lib/VoucherifySdk/models/redemptions_list_response_body_redemptions_item.rb +435 -77
  2033. data/lib/VoucherifySdk/models/redemptions_list_response_body_redemptions_item_channel.rb +240 -0
  2034. data/lib/VoucherifySdk/models/redemptions_list_response_body_redemptions_item_customer.rb +288 -0
  2035. data/lib/VoucherifySdk/models/redemptions_list_response_body_redemptions_item_gift.rb +208 -0
  2036. data/lib/VoucherifySdk/models/redemptions_list_response_body_redemptions_item_loyalty_card.rb +208 -0
  2037. data/lib/VoucherifySdk/models/redemptions_list_response_body_redemptions_item_order.rb +462 -0
  2038. data/lib/VoucherifySdk/models/redemptions_list_response_body_redemptions_item_order_customer.rb +246 -0
  2039. data/lib/VoucherifySdk/models/redemptions_list_response_body_redemptions_item_order_referrer.rb +246 -0
  2040. data/lib/VoucherifySdk/models/redemptions_list_response_body_redemptions_item_promotion_tier.rb +452 -0
  2041. data/lib/VoucherifySdk/models/redemptions_list_response_body_redemptions_item_promotion_tier_action.rb +207 -0
  2042. data/lib/VoucherifySdk/models/redemptions_list_response_body_redemptions_item_promotion_tier_campaign.rb +318 -0
  2043. data/lib/VoucherifySdk/models/redemptions_list_response_body_redemptions_item_promotion_tier_summary.rb +216 -0
  2044. data/lib/VoucherifySdk/models/redemptions_list_response_body_redemptions_item_promotion_tier_summary_orders.rb +220 -0
  2045. data/lib/VoucherifySdk/models/redemptions_list_response_body_redemptions_item_promotion_tier_summary_redemptions.rb +209 -0
  2046. data/lib/VoucherifySdk/models/redemptions_list_response_body_redemptions_item_related_redemptions.rb +221 -0
  2047. data/lib/VoucherifySdk/models/redemptions_list_response_body_redemptions_item_related_redemptions_redemptions_item.rb +218 -0
  2048. data/lib/VoucherifySdk/models/redemptions_list_response_body_redemptions_item_related_redemptions_rollbacks_item.rb +217 -0
  2049. data/lib/VoucherifySdk/models/redemptions_list_response_body_redemptions_item_voucher.rb +535 -0
  2050. data/lib/VoucherifySdk/models/redemptions_list_response_body_redemptions_item_voucher_gift.rb +255 -0
  2051. data/lib/VoucherifySdk/models/redemptions_list_response_body_redemptions_item_voucher_loyalty_card.rb +242 -0
  2052. data/lib/VoucherifySdk/models/redemptions_list_response_body_redemptions_item_voucher_publish.rb +233 -0
  2053. data/lib/VoucherifySdk/models/redemptions_list_response_body_redemptions_item_voucher_redemption.rb +255 -0
  2054. data/lib/VoucherifySdk/models/redemptions_redeem_request_body.rb +19 -65
  2055. data/lib/VoucherifySdk/models/redemptions_redeem_request_body_options.rb +234 -0
  2056. data/lib/VoucherifySdk/models/redemptions_redeem_request_body_redeemables_item.rb +260 -0
  2057. data/lib/VoucherifySdk/models/redemptions_redeem_request_body_redeemables_item_gift.rb +210 -0
  2058. data/lib/VoucherifySdk/models/redemptions_redeem_request_body_redeemables_item_reward.rb +221 -0
  2059. data/lib/VoucherifySdk/models/redemptions_redeem_response_body.rb +4 -8
  2060. data/lib/VoucherifySdk/models/redemptions_rollback_create_request_body.rb +4 -8
  2061. data/lib/VoucherifySdk/models/redemptions_rollback_create_response_body.rb +26 -133
  2062. data/lib/VoucherifySdk/models/redemptions_rollback_create_response_body_channel.rb +245 -0
  2063. data/lib/VoucherifySdk/models/redemptions_rollback_create_response_body_gift.rb +210 -0
  2064. data/lib/VoucherifySdk/models/redemptions_rollback_create_response_body_loyalty_card.rb +210 -0
  2065. data/lib/VoucherifySdk/models/redemptions_rollback_create_response_body_related_redemptions.rb +222 -0
  2066. data/lib/VoucherifySdk/models/redemptions_rollback_create_response_body_related_redemptions_redemptions_item.rb +218 -0
  2067. data/lib/VoucherifySdk/models/redemptions_rollback_create_response_body_related_redemptions_rollbacks_item.rb +218 -0
  2068. data/lib/VoucherifySdk/models/redemptions_rollbacks_create_request_body.rb +4 -8
  2069. data/lib/VoucherifySdk/models/redemptions_rollbacks_create_response_body.rb +3 -9
  2070. data/lib/VoucherifySdk/models/referral_program.rb +3 -17
  2071. data/lib/VoucherifySdk/models/referral_program_custom_event.rb +2 -7
  2072. data/lib/VoucherifySdk/models/referral_program_referee_reward.rb +4 -18
  2073. data/lib/VoucherifySdk/models/referral_program_referee_reward_related_object_parent.rb +3 -17
  2074. data/lib/VoucherifySdk/models/referrals_members_holders_create_in_bulk_request_body.rb +223 -0
  2075. data/lib/VoucherifySdk/models/referrals_members_holders_create_in_bulk_response_body.rb +212 -0
  2076. data/lib/VoucherifySdk/models/referrals_members_holders_list_response_body.rb +271 -0
  2077. data/lib/VoucherifySdk/models/referrer.rb +11 -16
  2078. data/lib/VoucherifySdk/models/referrer_address.rb +265 -0
  2079. data/lib/VoucherifySdk/models/referrer_id.rb +3 -37
  2080. data/lib/VoucherifySdk/models/reward.rb +9 -71
  2081. data/lib/VoucherifySdk/models/reward_assignment.rb +11 -79
  2082. data/lib/VoucherifySdk/models/reward_assignment_parameters.rb +9 -14
  2083. data/lib/VoucherifySdk/models/reward_assignment_parameters_loyalty.rb +221 -0
  2084. data/lib/VoucherifySdk/models/reward_attributes.rb +2 -7
  2085. data/lib/VoucherifySdk/models/reward_type.rb +198 -76
  2086. data/lib/VoucherifySdk/models/reward_type_campaign.rb +56 -21
  2087. data/lib/VoucherifySdk/models/reward_type_coin.rb +21 -21
  2088. data/lib/VoucherifySdk/models/reward_type_product.rb +221 -0
  2089. data/lib/VoucherifySdk/models/rewards_assignments_create_request_body.rb +201 -76
  2090. data/lib/VoucherifySdk/models/rewards_assignments_create_request_body_parameters.rb +209 -0
  2091. data/lib/VoucherifySdk/models/rewards_assignments_create_request_body_parameters_loyalty.rb +226 -0
  2092. data/lib/VoucherifySdk/models/rewards_assignments_create_response_body.rb +12 -79
  2093. data/lib/VoucherifySdk/models/rewards_assignments_create_response_body_parameters.rb +209 -0
  2094. data/lib/VoucherifySdk/models/rewards_assignments_create_response_body_parameters_loyalty.rb +221 -0
  2095. data/lib/VoucherifySdk/models/rewards_assignments_get_response_body.rb +12 -79
  2096. data/lib/VoucherifySdk/models/rewards_assignments_get_response_body_parameters.rb +209 -0
  2097. data/lib/VoucherifySdk/models/rewards_assignments_get_response_body_parameters_loyalty.rb +221 -0
  2098. data/lib/VoucherifySdk/models/rewards_assignments_list_response_body.rb +6 -33
  2099. data/lib/VoucherifySdk/models/rewards_assignments_update_request_body.rb +2 -8
  2100. data/lib/VoucherifySdk/models/rewards_assignments_update_request_body_parameters.rb +1 -7
  2101. data/lib/VoucherifySdk/models/rewards_assignments_update_request_body_parameters_loyalty.rb +16 -11
  2102. data/lib/VoucherifySdk/models/rewards_assignments_update_response_body.rb +12 -79
  2103. data/lib/VoucherifySdk/models/rewards_assignments_update_response_body_parameters.rb +209 -0
  2104. data/lib/VoucherifySdk/models/rewards_assignments_update_response_body_parameters_loyalty.rb +221 -0
  2105. data/lib/VoucherifySdk/models/rewards_create_request_body.rb +250 -0
  2106. data/lib/VoucherifySdk/models/rewards_create_request_body_attributes.rb +221 -0
  2107. data/lib/VoucherifySdk/models/rewards_create_request_body_parameters.rb +228 -0
  2108. data/lib/VoucherifySdk/models/rewards_create_request_body_parameters_campaign.rb +219 -0
  2109. data/lib/VoucherifySdk/models/rewards_create_request_body_parameters_coin.rb +221 -0
  2110. data/lib/VoucherifySdk/models/rewards_create_request_body_parameters_product.rb +221 -0
  2111. data/lib/VoucherifySdk/models/rewards_create_response_body.rb +349 -0
  2112. data/lib/VoucherifySdk/models/rewards_create_response_body_attributes.rb +221 -0
  2113. data/lib/VoucherifySdk/models/rewards_list_response_body.rb +249 -0
  2114. data/lib/VoucherifySdk/models/rewards_update_request_body.rb +250 -0
  2115. data/lib/VoucherifySdk/models/rewards_update_request_body_attributes.rb +221 -0
  2116. data/lib/VoucherifySdk/models/rewards_update_request_body_parameters.rb +228 -0
  2117. data/lib/VoucherifySdk/models/rewards_update_request_body_parameters_campaign.rb +219 -0
  2118. data/lib/VoucherifySdk/models/rewards_update_request_body_parameters_coin.rb +221 -0
  2119. data/lib/VoucherifySdk/models/rewards_update_request_body_parameters_product.rb +221 -0
  2120. data/lib/VoucherifySdk/models/rewards_update_response_body.rb +349 -0
  2121. data/lib/VoucherifySdk/models/rewards_update_response_body_attributes.rb +221 -0
  2122. data/lib/VoucherifySdk/models/segments_create_request_body.rb +267 -0
  2123. data/lib/VoucherifySdk/models/segments_create_response_body.rb +305 -0
  2124. data/lib/VoucherifySdk/models/segments_get_response_body.rb +305 -0
  2125. data/lib/VoucherifySdk/models/session.rb +5 -42
  2126. data/lib/VoucherifySdk/models/simple_customer.rb +21 -31
  2127. data/lib/VoucherifySdk/models/simple_customer_required_object_type.rb +8 -14
  2128. data/lib/VoucherifySdk/models/simple_loyalty_card.rb +243 -0
  2129. data/lib/VoucherifySdk/models/simple_product_discount_unit.rb +3 -21
  2130. data/lib/VoucherifySdk/models/simple_segment.rb +4 -37
  2131. data/lib/VoucherifySdk/models/simple_sku_discount_unit.rb +3 -21
  2132. data/lib/VoucherifySdk/models/simple_voucher.rb +110 -47
  2133. data/lib/VoucherifySdk/models/simple_voucher_redemption.rb +221 -0
  2134. data/lib/VoucherifySdk/models/sku.rb +9 -70
  2135. data/lib/VoucherifySdk/models/skus_get_response_body.rb +10 -78
  2136. data/lib/VoucherifySdk/models/skus_import_csv_create_response_body.rb +2 -22
  2137. data/lib/VoucherifySdk/models/skus_list_for_product.rb +5 -32
  2138. data/lib/VoucherifySdk/models/stacking_rules.rb +85 -156
  2139. data/lib/VoucherifySdk/models/templates_campaigns_campaign_setup_create_request_body.rb +406 -0
  2140. data/lib/VoucherifySdk/models/templates_campaigns_campaign_setup_create_request_body_voucher.rb +218 -0
  2141. data/lib/VoucherifySdk/models/templates_campaigns_campaign_setup_create_request_body_voucher_redemption.rb +210 -0
  2142. data/lib/VoucherifySdk/models/templates_campaigns_campaign_setup_create_response_body.rb +265 -0
  2143. data/lib/VoucherifySdk/models/templates_campaigns_campaign_setup_create_response_body_created_resources_item.rb +242 -0
  2144. data/lib/VoucherifySdk/models/templates_campaigns_create_request_body.rb +243 -0
  2145. data/lib/VoucherifySdk/models/templates_campaigns_create_template_response_body.rb +293 -0
  2146. data/lib/VoucherifySdk/models/templates_campaigns_get_response_body.rb +304 -0
  2147. data/lib/VoucherifySdk/models/templates_campaigns_list_response_body.rb +297 -0
  2148. data/lib/VoucherifySdk/models/templates_campaigns_tier_setup_create_request_body.rb +361 -0
  2149. data/lib/VoucherifySdk/models/templates_campaigns_tier_setup_create_response_body.rb +258 -0
  2150. data/lib/VoucherifySdk/models/templates_campaigns_tier_setup_create_response_body_created_resources_item.rb +242 -0
  2151. data/lib/VoucherifySdk/models/templates_campaigns_update_request_body.rb +221 -0
  2152. data/lib/VoucherifySdk/models/templates_campaigns_update_response_body.rb +304 -0
  2153. data/lib/VoucherifySdk/models/trash_bin_item.rb +313 -0
  2154. data/lib/VoucherifySdk/models/trash_bin_list_response_body.rb +297 -0
  2155. data/lib/VoucherifySdk/models/usage_notifications.rb +254 -0
  2156. data/lib/VoucherifySdk/models/user.rb +278 -0
  2157. data/lib/VoucherifySdk/models/validation_rule.rb +17 -91
  2158. data/lib/VoucherifySdk/models/validation_rule_applicable_to.rb +235 -0
  2159. data/lib/VoucherifySdk/models/validation_rule_assignment.rb +8 -69
  2160. data/lib/VoucherifySdk/models/validation_rule_assignments_list.rb +5 -32
  2161. data/lib/VoucherifySdk/models/validation_rule_error.rb +210 -0
  2162. data/lib/VoucherifySdk/models/validation_rules_assignments_create_request_body.rb +5 -20
  2163. data/lib/VoucherifySdk/models/validation_rules_assignments_create_response_body.rb +9 -77
  2164. data/lib/VoucherifySdk/models/validation_rules_assignments_list.rb +7 -68
  2165. data/lib/VoucherifySdk/models/validation_rules_assignments_list_response_body.rb +6 -40
  2166. data/lib/VoucherifySdk/models/validation_rules_create_request_body.rb +10 -46
  2167. data/lib/VoucherifySdk/models/validation_rules_create_request_body_applicable_to.rb +235 -0
  2168. data/lib/VoucherifySdk/models/validation_rules_create_request_body_error.rb +210 -0
  2169. data/lib/VoucherifySdk/models/validation_rules_create_response_body.rb +18 -92
  2170. data/lib/VoucherifySdk/models/validation_rules_create_response_body_applicable_to.rb +235 -0
  2171. data/lib/VoucherifySdk/models/validation_rules_create_response_body_error.rb +210 -0
  2172. data/lib/VoucherifySdk/models/validation_rules_get_response_body.rb +18 -92
  2173. data/lib/VoucherifySdk/models/validation_rules_get_response_body_applicable_to.rb +235 -0
  2174. data/lib/VoucherifySdk/models/validation_rules_get_response_body_error.rb +210 -0
  2175. data/lib/VoucherifySdk/models/validation_rules_list_response_body.rb +6 -33
  2176. data/lib/VoucherifySdk/models/validation_rules_update_request_body.rb +10 -39
  2177. data/lib/VoucherifySdk/models/validation_rules_update_request_body_applicable_to.rb +235 -0
  2178. data/lib/VoucherifySdk/models/validation_rules_update_request_body_error.rb +210 -0
  2179. data/lib/VoucherifySdk/models/validation_rules_update_response_body.rb +18 -92
  2180. data/lib/VoucherifySdk/models/validation_rules_update_response_body_applicable_to.rb +235 -0
  2181. data/lib/VoucherifySdk/models/validation_rules_update_response_body_error.rb +210 -0
  2182. data/lib/VoucherifySdk/models/validations_redeemable_inapplicable.rb +31 -31
  2183. data/lib/VoucherifySdk/models/validations_redeemable_inapplicable_result.rb +15 -11
  2184. data/lib/VoucherifySdk/models/validations_redeemable_inapplicable_result_details.rb +221 -0
  2185. data/lib/VoucherifySdk/models/validations_redeemable_skipped.rb +31 -31
  2186. data/lib/VoucherifySdk/models/validations_redeemable_skipped_result.rb +209 -0
  2187. data/lib/VoucherifySdk/models/validations_redeemable_skipped_result_details.rb +242 -0
  2188. data/lib/VoucherifySdk/models/validations_validate_request_body.rb +19 -65
  2189. data/lib/VoucherifySdk/models/validations_validate_request_body_options.rb +234 -0
  2190. data/lib/VoucherifySdk/models/validations_validate_request_body_redeemables_item.rb +260 -0
  2191. data/lib/VoucherifySdk/models/validations_validate_request_body_redeemables_item_gift.rb +210 -0
  2192. data/lib/VoucherifySdk/models/validations_validate_request_body_redeemables_item_reward.rb +221 -0
  2193. data/lib/VoucherifySdk/models/validations_validate_response_body.rb +26 -27
  2194. data/lib/VoucherifySdk/models/validations_validate_response_body_redeemables_item.rb +312 -0
  2195. data/lib/VoucherifySdk/models/validations_validate_response_body_redeemables_item_result.rb +244 -0
  2196. data/lib/VoucherifySdk/models/validations_validate_response_body_redeemables_item_result_details.rb +216 -0
  2197. data/lib/VoucherifySdk/models/validations_validate_response_body_redeemables_item_result_discount.rb +400 -0
  2198. data/lib/VoucherifySdk/models/validations_validate_response_body_redeemables_item_result_discount_product.rb +231 -0
  2199. data/lib/VoucherifySdk/models/validations_validate_response_body_redeemables_item_result_gift.rb +210 -0
  2200. data/lib/VoucherifySdk/models/validations_validate_response_body_redeemables_item_result_loyalty_card.rb +209 -0
  2201. data/lib/VoucherifySdk/models/validity_hours.rb +212 -0
  2202. data/lib/VoucherifySdk/models/validity_hours_daily_item.rb +253 -0
  2203. data/lib/VoucherifySdk/models/validity_timeframe.rb +221 -0
  2204. data/lib/VoucherifySdk/models/voucher.rb +68 -75
  2205. data/lib/VoucherifySdk/models/voucher_assets.rb +4 -9
  2206. data/lib/VoucherifySdk/models/voucher_assets_barcode.rb +221 -0
  2207. data/lib/VoucherifySdk/models/voucher_assets_qr.rb +221 -0
  2208. data/lib/VoucherifySdk/models/voucher_gift.rb +3 -17
  2209. data/lib/VoucherifySdk/models/voucher_loyalty_card.rb +5 -8
  2210. data/lib/VoucherifySdk/models/voucher_publish.rb +6 -10
  2211. data/lib/VoucherifySdk/models/voucher_redemption.rb +8 -20
  2212. data/lib/VoucherifySdk/models/voucher_transaction.rb +7 -52
  2213. data/lib/VoucherifySdk/models/voucher_transaction_details.rb +11 -7
  2214. data/lib/VoucherifySdk/models/voucher_transaction_details_balance.rb +14 -73
  2215. data/lib/VoucherifySdk/models/voucher_transaction_details_balance_related_object.rb +4 -31
  2216. data/lib/VoucherifySdk/models/voucher_transaction_details_custom_event.rb +2 -21
  2217. data/lib/VoucherifySdk/models/voucher_transaction_details_earning_rule.rb +2 -21
  2218. data/lib/VoucherifySdk/models/voucher_transaction_details_earning_rule_source.rb +1 -14
  2219. data/lib/VoucherifySdk/models/voucher_transaction_details_event.rb +2 -21
  2220. data/lib/VoucherifySdk/models/voucher_transaction_details_event_schema.rb +2 -21
  2221. data/lib/VoucherifySdk/models/voucher_transaction_details_loyalty_tier.rb +2 -21
  2222. data/lib/VoucherifySdk/models/voucher_transaction_details_order.rb +3 -22
  2223. data/lib/VoucherifySdk/models/voucher_transaction_details_redemption.rb +1 -14
  2224. data/lib/VoucherifySdk/models/voucher_transaction_details_reward.rb +2 -21
  2225. data/lib/VoucherifySdk/models/voucher_transaction_details_rollback.rb +1 -14
  2226. data/lib/VoucherifySdk/models/voucher_transaction_details_segment.rb +2 -21
  2227. data/lib/VoucherifySdk/models/voucher_transactions_export_filter_conditions.rb +1 -14
  2228. data/lib/VoucherifySdk/models/voucher_transactions_export_filter_conditions_voucher_id.rb +2 -15
  2229. data/lib/VoucherifySdk/models/voucher_transactions_export_filter_conditions_voucher_id_conditions.rb +6 -37
  2230. data/lib/VoucherifySdk/models/voucher_transactions_export_parameters.rb +3 -18
  2231. data/lib/VoucherifySdk/models/voucher_transactions_filters.rb +3 -18
  2232. data/lib/VoucherifySdk/models/voucher_with_categories.rb +524 -0
  2233. data/lib/VoucherifySdk/models/voucher_with_categories_gift.rb +256 -0
  2234. data/lib/VoucherifySdk/models/voucher_with_categories_loyalty_card.rb +243 -0
  2235. data/lib/VoucherifySdk/models/voucher_with_categories_publish.rb +234 -0
  2236. data/lib/VoucherifySdk/models/voucher_with_categories_redemption.rb +256 -0
  2237. data/lib/VoucherifySdk/models/vouchers_balance_update_request_body.rb +4 -15
  2238. data/lib/VoucherifySdk/models/vouchers_balance_update_response_body.rb +8 -83
  2239. data/lib/VoucherifySdk/models/vouchers_balance_update_response_body_related_object.rb +2 -29
  2240. data/lib/VoucherifySdk/models/vouchers_create_response_body.rb +533 -0
  2241. data/lib/VoucherifySdk/models/vouchers_create_response_body_gift.rb +256 -0
  2242. data/lib/VoucherifySdk/models/vouchers_create_response_body_loyalty_card.rb +243 -0
  2243. data/lib/VoucherifySdk/models/vouchers_create_response_body_publish.rb +234 -0
  2244. data/lib/VoucherifySdk/models/vouchers_create_response_body_redemption.rb +256 -0
  2245. data/lib/VoucherifySdk/models/vouchers_create_with_specific_code_request_body.rb +410 -0
  2246. data/lib/VoucherifySdk/models/vouchers_create_with_specific_code_request_body_redemption.rb +209 -0
  2247. data/lib/VoucherifySdk/models/vouchers_disable_response_body.rb +71 -85
  2248. data/lib/VoucherifySdk/models/vouchers_disable_response_body_gift.rb +256 -0
  2249. data/lib/VoucherifySdk/models/vouchers_disable_response_body_loyalty_card.rb +243 -0
  2250. data/lib/VoucherifySdk/models/vouchers_disable_response_body_publish.rb +234 -0
  2251. data/lib/VoucherifySdk/models/vouchers_disable_response_body_redemption.rb +256 -0
  2252. data/lib/VoucherifySdk/models/vouchers_enable_response_body.rb +71 -85
  2253. data/lib/VoucherifySdk/models/vouchers_enable_response_body_gift.rb +256 -0
  2254. data/lib/VoucherifySdk/models/vouchers_enable_response_body_loyalty_card.rb +243 -0
  2255. data/lib/VoucherifySdk/models/vouchers_enable_response_body_publish.rb +234 -0
  2256. data/lib/VoucherifySdk/models/vouchers_enable_response_body_redemption.rb +256 -0
  2257. data/lib/VoucherifySdk/models/vouchers_get_response_body.rb +71 -85
  2258. data/lib/VoucherifySdk/models/vouchers_get_response_body_gift.rb +256 -0
  2259. data/lib/VoucherifySdk/models/vouchers_get_response_body_loyalty_card.rb +243 -0
  2260. data/lib/VoucherifySdk/models/vouchers_get_response_body_publish.rb +234 -0
  2261. data/lib/VoucherifySdk/models/vouchers_get_response_body_redemption.rb +256 -0
  2262. data/lib/VoucherifySdk/models/vouchers_import_create_item_request_body.rb +357 -0
  2263. data/lib/VoucherifySdk/models/vouchers_import_create_item_request_body_redemption.rb +209 -0
  2264. data/lib/VoucherifySdk/models/vouchers_import_create_response_body.rb +210 -0
  2265. data/lib/VoucherifySdk/models/vouchers_import_csv_create_response_body.rb +2 -22
  2266. data/lib/VoucherifySdk/models/vouchers_list_response_body.rb +275 -0
  2267. data/lib/VoucherifySdk/models/vouchers_metadata_update_in_bulk_request_body.rb +223 -0
  2268. data/lib/VoucherifySdk/models/vouchers_metadata_update_in_bulk_response_body.rb +210 -0
  2269. data/lib/VoucherifySdk/models/vouchers_redemption_get_response_body.rb +8 -43
  2270. data/lib/VoucherifySdk/models/vouchers_transactions_export_create_request_body.rb +1 -8
  2271. data/lib/VoucherifySdk/models/vouchers_transactions_export_create_response_body.rb +8 -84
  2272. data/lib/VoucherifySdk/models/vouchers_transactions_export_create_response_body_result.rb +210 -0
  2273. data/lib/VoucherifySdk/models/vouchers_transactions_list_response_body.rb +48 -38
  2274. data/lib/VoucherifySdk/models/vouchers_update_in_bulk_item_request_body.rb +220 -0
  2275. data/lib/VoucherifySdk/models/vouchers_update_in_bulk_response_body.rb +210 -0
  2276. data/lib/VoucherifySdk/models/vouchers_update_request_body.rb +365 -0
  2277. data/lib/VoucherifySdk/models/vouchers_update_response_body.rb +533 -0
  2278. data/lib/VoucherifySdk/models/vouchers_update_response_body_gift.rb +256 -0
  2279. data/lib/VoucherifySdk/models/vouchers_update_response_body_loyalty_card.rb +243 -0
  2280. data/lib/VoucherifySdk/models/vouchers_update_response_body_publish.rb +234 -0
  2281. data/lib/VoucherifySdk/models/vouchers_update_response_body_redemption.rb +256 -0
  2282. data/lib/VoucherifySdk/version.rb +1 -1
  2283. data/lib/VoucherifySdk.rb +769 -294
  2284. metadata +1649 -622
  2285. data/CHANGELOG.md +0 -33
  2286. data/__tests__/spec/1_products_spec.rb +0 -101
  2287. data/__tests__/spec/2_campaigns_spec.rb +0 -95
  2288. data/__tests__/spec/3_customers_spec.rb +0 -24
  2289. data/__tests__/spec/4_publications_spec.rb +0 -23
  2290. data/__tests__/spec/5_qualifications_spec.rb +0 -27
  2291. data/__tests__/spec/6_validations_spec.rb +0 -126
  2292. data/__tests__/spec/7_vouchers_spec.rb +0 -40
  2293. data/__tests__/spec/8_events_spec.rb +0 -16
  2294. data/__tests__/spec/9_redemptions_spec.rb +0 -14
  2295. data/__tests__/spec/a1_validation_rules_spec.rb +0 -33
  2296. data/docs/Any.md +0 -53
  2297. data/docs/ArrayInner.md +0 -51
  2298. data/docs/AsyncActions.md +0 -8
  2299. data/docs/CampaignBaseValidityTimeframe.md +0 -9
  2300. data/docs/CampaignsCreateBase.md +0 -23
  2301. data/docs/CampaignsCreateDiscountCouponsCampaign.md +0 -25
  2302. data/docs/CampaignsCreateGiftCampaign.md +0 -25
  2303. data/docs/CampaignsCreateGiveawayCampaign.md +0 -26
  2304. data/docs/CampaignsCreateLoyaltyCampaign.md +0 -25
  2305. data/docs/CampaignsCreatePromotionCampaign.md +0 -25
  2306. data/docs/CampaignsCreateReferralCampaign.md +0 -26
  2307. data/docs/CampaignsDisableResponseBody.md +0 -7
  2308. data/docs/CampaignsEnableResponseBody.md +0 -7
  2309. data/docs/CampaignsImportVoucherLoyaltyCard.md +0 -8
  2310. data/docs/CampaignsUpdateBase.md +0 -16
  2311. data/docs/CampaignsUpdateCouponCampaignBase.md +0 -20
  2312. data/docs/CampaignsUpdateDiscountCouponsCampaign.md +0 -21
  2313. data/docs/CampaignsUpdateGiftCampaign.md +0 -21
  2314. data/docs/CampaignsUpdateGiveawayCampaign.md +0 -23
  2315. data/docs/CampaignsUpdateLoyaltyCampaign.md +0 -22
  2316. data/docs/CampaignsUpdatePromotionCampaign.md +0 -16
  2317. data/docs/CampaignsUpdateReferralCampaign.md +0 -22
  2318. data/docs/CampaignsVouchersCreateBaseRequestBody.md +0 -13
  2319. data/docs/CampaignsVouchersCreateInBulkResponseBody.md +0 -8
  2320. data/docs/ClientQualificationsCheckEligibilityRequestBodyOptions.md +0 -12
  2321. data/docs/ClientQualificationsCheckEligibilityRequestBodyOptionsFilters.md +0 -14
  2322. data/docs/ClientRedemptionsRedeemRequestBodyAllOfOptions.md +0 -8
  2323. data/docs/ClientValidationsValidateRequestBodyAllOfOptions.md +0 -8
  2324. data/docs/CodeConfigRequiredLengthCharsetPattern.md +0 -13
  2325. data/docs/CreatePublicationBase.md +0 -10
  2326. data/docs/CreatePublicationWithCampaign.md +0 -11
  2327. data/docs/CreatePublicationWithSpecificVoucher.md +0 -11
  2328. data/docs/CustomEvent.md +0 -15
  2329. data/docs/CustomEventReferral.md +0 -10
  2330. data/docs/CustomerActivityData.md +0 -183
  2331. data/docs/CustomerBase.md +0 -15
  2332. data/docs/CustomerBaseAddress.md +0 -13
  2333. data/docs/CustomerLoyaltyCampaignsValue.md +0 -10
  2334. data/docs/CustomerResponseDataAssets.md +0 -8
  2335. data/docs/CustomerSegmentsList.md +0 -11
  2336. data/docs/DiscountAmount.md +0 -13
  2337. data/docs/DiscountAmountVouchersEffectTypes.md +0 -7
  2338. data/docs/DiscountCouponsCampaignVoucher.md +0 -11
  2339. data/docs/DiscountFixed.md +0 -12
  2340. data/docs/DiscountFixedVouchersEffectTypes.md +0 -7
  2341. data/docs/DiscountPercent.md +0 -14
  2342. data/docs/DiscountPercentVouchersEffectTypes.md +0 -7
  2343. data/docs/DiscountUnit.md +0 -15
  2344. data/docs/DiscountUnitMultiple.md +0 -10
  2345. data/docs/DiscountUnitVouchersEffectTypes.md +0 -7
  2346. data/docs/EarningRuleBase.md +0 -21
  2347. data/docs/EarningRuleBaseCustomEvent.md +0 -8
  2348. data/docs/EarningRuleBaseLoyalty.md +0 -49
  2349. data/docs/EarningRuleBaseSegment.md +0 -8
  2350. data/docs/EarningRuleBaseSource.md +0 -10
  2351. data/docs/EarningRuleBaseValidityTimeframe.md +0 -9
  2352. data/docs/EarningRuleEvent.md +0 -7
  2353. data/docs/EarningRuleFixed.md +0 -9
  2354. data/docs/EarningRuleProportional.md +0 -53
  2355. data/docs/EarningRuleProportionalCustomEvent.md +0 -10
  2356. data/docs/EarningRuleProportionalCustomEventCustomEvent.md +0 -8
  2357. data/docs/EarningRuleProportionalCustomEventCustomEventMetadata.md +0 -10
  2358. data/docs/EarningRuleProportionalCustomerMetadata.md +0 -10
  2359. data/docs/EarningRuleProportionalCustomerMetadataCustomer.md +0 -8
  2360. data/docs/EarningRuleProportionalCustomerMetadataCustomerMetadata.md +0 -10
  2361. data/docs/EarningRuleProportionalOrder.md +0 -51
  2362. data/docs/EarningRuleProportionalOrderAmount.md +0 -10
  2363. data/docs/EarningRuleProportionalOrderAmountOrder.md +0 -8
  2364. data/docs/EarningRuleProportionalOrderAmountOrderAmount.md +0 -9
  2365. data/docs/EarningRuleProportionalOrderItems.md +0 -51
  2366. data/docs/EarningRuleProportionalOrderItemsAmount.md +0 -10
  2367. data/docs/EarningRuleProportionalOrderItemsAmountOrderItems.md +0 -8
  2368. data/docs/EarningRuleProportionalOrderItemsAmountOrderItemsAmount.md +0 -11
  2369. data/docs/EarningRuleProportionalOrderItemsQuantity.md +0 -10
  2370. data/docs/EarningRuleProportionalOrderItemsQuantityOrderItems.md +0 -8
  2371. data/docs/EarningRuleProportionalOrderItemsSubtotalAmount.md +0 -10
  2372. data/docs/EarningRuleProportionalOrderItemsSubtotalAmountOrderItems.md +0 -8
  2373. data/docs/EarningRuleProportionalOrderMetadata.md +0 -10
  2374. data/docs/EarningRuleProportionalOrderMetadataOrder.md +0 -8
  2375. data/docs/EarningRuleProportionalOrderMetadataOrderMetadata.md +0 -10
  2376. data/docs/EarningRuleProportionalOrderTotalAmount.md +0 -10
  2377. data/docs/EarningRuleProportionalOrderTotalAmountOrder.md +0 -8
  2378. data/docs/EventCustomerActiveCampaignFailed.md +0 -10
  2379. data/docs/EventCustomerActiveCampaignRecovered.md +0 -10
  2380. data/docs/EventCustomerActiveCampaignSent.md +0 -10
  2381. data/docs/EventCustomerBatchFailed.md +0 -10
  2382. data/docs/EventCustomerBatchRecovered.md +0 -10
  2383. data/docs/EventCustomerBatchSent.md +0 -10
  2384. data/docs/EventCustomerBrazeFailed.md +0 -10
  2385. data/docs/EventCustomerBrazeRecovered.md +0 -10
  2386. data/docs/EventCustomerBrazeSent.md +0 -10
  2387. data/docs/EventCustomerConfirmed.md +0 -9
  2388. data/docs/EventCustomerConfirmedUnconfirmedCustomer.md +0 -8
  2389. data/docs/EventCustomerConsents.md +0 -9
  2390. data/docs/EventCustomerConsentsGiven.md +0 -9
  2391. data/docs/EventCustomerConsentsRevoked.md +0 -9
  2392. data/docs/EventCustomerCreated.md +0 -8
  2393. data/docs/EventCustomerCustomEvent.md +0 -8
  2394. data/docs/EventCustomerDeleted.md +0 -8
  2395. data/docs/EventCustomerEmailFailed.md +0 -10
  2396. data/docs/EventCustomerEmailRecovered.md +0 -10
  2397. data/docs/EventCustomerEmailSent.md +0 -10
  2398. data/docs/EventCustomerFailed.md +0 -10
  2399. data/docs/EventCustomerGiftVoucherBalanceAdded.md +0 -12
  2400. data/docs/EventCustomerIntercomFailed.md +0 -10
  2401. data/docs/EventCustomerIntercomRecovered.md +0 -10
  2402. data/docs/EventCustomerIntercomSent.md +0 -10
  2403. data/docs/EventCustomerKlaviyoFailed.md +0 -10
  2404. data/docs/EventCustomerKlaviyoRecovered.md +0 -10
  2405. data/docs/EventCustomerKlaviyoSent.md +0 -10
  2406. data/docs/EventCustomerLoyaltyCardPointsAdded.md +0 -12
  2407. data/docs/EventCustomerLoyaltyCardPointsTransferred.md +0 -14
  2408. data/docs/EventCustomerLoyaltyTierBase.md +0 -9
  2409. data/docs/EventCustomerLoyaltyTierDowngraded.md +0 -12
  2410. data/docs/EventCustomerLoyaltyTierExpirationChanged.md +0 -12
  2411. data/docs/EventCustomerLoyaltyTierJoined.md +0 -11
  2412. data/docs/EventCustomerLoyaltyTierLeft.md +0 -11
  2413. data/docs/EventCustomerLoyaltyTierProlonged.md +0 -11
  2414. data/docs/EventCustomerLoyaltyTierUpgraded.md +0 -12
  2415. data/docs/EventCustomerLoyaltyUpdated.md +0 -11
  2416. data/docs/EventCustomerMailchimpFailed.md +0 -10
  2417. data/docs/EventCustomerMailchimpRecovered.md +0 -10
  2418. data/docs/EventCustomerMailchimpSent.md +0 -10
  2419. data/docs/EventCustomerOrder.md +0 -11
  2420. data/docs/EventCustomerOrderCanceled.md +0 -11
  2421. data/docs/EventCustomerOrderCreated.md +0 -11
  2422. data/docs/EventCustomerOrderFulfilled.md +0 -11
  2423. data/docs/EventCustomerOrderPaid.md +0 -11
  2424. data/docs/EventCustomerOrderProcessing.md +0 -11
  2425. data/docs/EventCustomerOrderUpdated.md +0 -11
  2426. data/docs/EventCustomerPublicationFailed.md +0 -10
  2427. data/docs/EventCustomerPublicationSucceeded.md +0 -10
  2428. data/docs/EventCustomerRecovered.md +0 -10
  2429. data/docs/EventCustomerRedemption.md +0 -14
  2430. data/docs/EventCustomerRedemptionFailed.md +0 -14
  2431. data/docs/EventCustomerRedemptionRollbackFailed.md +0 -15
  2432. data/docs/EventCustomerRedemptionRollbackSucceeded.md +0 -15
  2433. data/docs/EventCustomerRedemptionSucceeded.md +0 -14
  2434. data/docs/EventCustomerReferred.md +0 -13
  2435. data/docs/EventCustomerRewardRedemptions.md +0 -16
  2436. data/docs/EventCustomerRewardRedemptionsCompleted.md +0 -16
  2437. data/docs/EventCustomerRewardRedemptionsCreated.md +0 -16
  2438. data/docs/EventCustomerRewardRedemptionsPending.md +0 -16
  2439. data/docs/EventCustomerRewardRedemptionsRolledBack.md +0 -16
  2440. data/docs/EventCustomerRewarded.md +0 -17
  2441. data/docs/EventCustomerRewardedLoyaltyPoints.md +0 -16
  2442. data/docs/EventCustomerSegmentEntered.md +0 -9
  2443. data/docs/EventCustomerSegmentLeft.md +0 -9
  2444. data/docs/EventCustomerSent.md +0 -10
  2445. data/docs/EventCustomerShopifyFailed.md +0 -10
  2446. data/docs/EventCustomerShopifyRecovered.md +0 -10
  2447. data/docs/EventCustomerShopifySent.md +0 -10
  2448. data/docs/EventCustomerSmsFailed.md +0 -10
  2449. data/docs/EventCustomerSmsRecovered.md +0 -10
  2450. data/docs/EventCustomerSmsSent.md +0 -10
  2451. data/docs/EventCustomerUpdated.md +0 -8
  2452. data/docs/EventCustomerValidationFailed.md +0 -9
  2453. data/docs/EventCustomerValidationSucceeded.md +0 -9
  2454. data/docs/EventCustomerVoucherDeleted.md +0 -10
  2455. data/docs/EventCustomerVouchersLoyaltyPointsExpired.md +0 -13
  2456. data/docs/ExportBase.md +0 -14
  2457. data/docs/ExportBaseResult.md +0 -8
  2458. data/docs/ExportCustomer.md +0 -16
  2459. data/docs/ExportCustomerBase.md +0 -9
  2460. data/docs/ExportCustomerBaseParameters.md +0 -10
  2461. data/docs/ExportCustomerFields.md +0 -7
  2462. data/docs/ExportCustomerFilters.md +0 -38
  2463. data/docs/ExportCustomerOrder.md +0 -7
  2464. data/docs/ExportCustomerScheduled.md +0 -16
  2465. data/docs/ExportOrder.md +0 -16
  2466. data/docs/ExportOrderBase.md +0 -9
  2467. data/docs/ExportOrderFilters.md +0 -21
  2468. data/docs/ExportOrderScheduled.md +0 -16
  2469. data/docs/ExportPointsExpiration.md +0 -16
  2470. data/docs/ExportPointsExpirationBase.md +0 -9
  2471. data/docs/ExportPointsExpirationBaseParameters.md +0 -10
  2472. data/docs/ExportPointsExpirationFields.md +0 -7
  2473. data/docs/ExportPointsExpirationFilters.md +0 -10
  2474. data/docs/ExportPointsExpirationOrder.md +0 -7
  2475. data/docs/ExportPointsExpirationScheduled.md +0 -16
  2476. data/docs/ExportPublication.md +0 -16
  2477. data/docs/ExportPublicationBase.md +0 -9
  2478. data/docs/ExportPublicationBaseParameters.md +0 -10
  2479. data/docs/ExportPublicationFields.md +0 -7
  2480. data/docs/ExportPublicationFilters.md +0 -16
  2481. data/docs/ExportPublicationOrder.md +0 -7
  2482. data/docs/ExportPublicationScheduled.md +0 -16
  2483. data/docs/ExportRedemption.md +0 -16
  2484. data/docs/ExportRedemptionBase.md +0 -9
  2485. data/docs/ExportRedemptionBaseParameters.md +0 -10
  2486. data/docs/ExportRedemptionFields.md +0 -7
  2487. data/docs/ExportRedemptionFilters.md +0 -25
  2488. data/docs/ExportRedemptionOrder.md +0 -7
  2489. data/docs/ExportRedemptionScheduled.md +0 -16
  2490. data/docs/ExportScheduledBase.md +0 -14
  2491. data/docs/ExportVoucher.md +0 -16
  2492. data/docs/ExportVoucherBase.md +0 -9
  2493. data/docs/ExportVoucherBaseParameters.md +0 -10
  2494. data/docs/ExportVoucherFields.md +0 -7
  2495. data/docs/ExportVoucherFilters.md +0 -38
  2496. data/docs/ExportVoucherOrder.md +0 -7
  2497. data/docs/ExportVoucherScheduled.md +0 -16
  2498. data/docs/ExportVoucherTransactions.md +0 -16
  2499. data/docs/ExportVoucherTransactionsBase.md +0 -9
  2500. data/docs/ExportVoucherTransactionsScheduled.md +0 -16
  2501. data/docs/GiftCampaignVoucher.md +0 -11
  2502. data/docs/GiveawayCampaignVoucher.md +0 -12
  2503. data/docs/ListPublicationsItemBase.md +0 -17
  2504. data/docs/ListPublicationsItemInvalid.md +0 -20
  2505. data/docs/ListPublicationsItemValidMultipleVouchers.md +0 -19
  2506. data/docs/ListPublicationsItemValidSingleVoucher.md +0 -19
  2507. data/docs/LoyaltiesMembersTransfersCreateResponseBodyValidityTimeframe.md +0 -9
  2508. data/docs/LoyaltyTierAllOfConfig.md +0 -8
  2509. data/docs/LoyaltyTierAllOfConfigPoints.md +0 -9
  2510. data/docs/LuckyDraw.md +0 -10
  2511. data/docs/MappingFixed.md +0 -9
  2512. data/docs/MappingMultiply.md +0 -9
  2513. data/docs/OrderBase.md +0 -17
  2514. data/docs/OrderCalculatedBase.md +0 -27
  2515. data/docs/OrderCalculatedCustomer.md +0 -49
  2516. data/docs/OrderCalculatedNoCustomerData.md +0 -29
  2517. data/docs/OrderCalculatedReferrer.md +0 -49
  2518. data/docs/OrderItemCalculated.md +0 -25
  2519. data/docs/OrderRedemptions.md +0 -15
  2520. data/docs/ProductCollectionsCreateDynamicRequestBody.md +0 -10
  2521. data/docs/ProductCollectionsCreateDynamicRequestBodyFilter.md +0 -20
  2522. data/docs/ProductCollectionsCreateDynamicRequestBodyProductsItem.md +0 -10
  2523. data/docs/ProductCollectionsCreateStaticRequestBody.md +0 -10
  2524. data/docs/ProductCollectionsList.md +0 -11
  2525. data/docs/ProductCollectionsProductsList.md +0 -11
  2526. data/docs/ProductCollectionsProductsListProductsItem.md +0 -49
  2527. data/docs/PromotionTierCampaignValidityTimeframe.md +0 -9
  2528. data/docs/PromotionTierValidityTimeframe.md +0 -9
  2529. data/docs/PropertiesForLoyaltyCampaignOptions.md +0 -8
  2530. data/docs/PublicationsCreateBaseResponseBody.md +0 -18
  2531. data/docs/PublicationsCreateVoucherResponseBody.md +0 -19
  2532. data/docs/PublicationsCreateVouchersResponseBody.md +0 -19
  2533. data/docs/QualificationsStackingRules.md +0 -12
  2534. data/docs/RedeemGiftCard.md +0 -10
  2535. data/docs/RedeemGiftCardAllOfGift.md +0 -8
  2536. data/docs/RedeemLoyaltyCard.md +0 -10
  2537. data/docs/RedeemLoyaltyCardAllOfReward.md +0 -9
  2538. data/docs/RedeemPromotionStack.md +0 -9
  2539. data/docs/RedeemPromotionTier.md +0 -9
  2540. data/docs/RedeemVoucher.md +0 -9
  2541. data/docs/RedeemableResultGiftCard.md +0 -8
  2542. data/docs/RedeemableResultGiftCardGift.md +0 -8
  2543. data/docs/RedeemableResultLoyaltyCard.md +0 -8
  2544. data/docs/RedeemableResultLoyaltyCardLoyaltyCard.md +0 -8
  2545. data/docs/RedeemableResultPromotionStack.md +0 -8
  2546. data/docs/RedeemableResultPromotionTier.md +0 -8
  2547. data/docs/RedeemableResultPromotionTierDiscount.md +0 -55
  2548. data/docs/RedeemableResultVoucherCode.md +0 -8
  2549. data/docs/RedemptionInternal.md +0 -34
  2550. data/docs/RedemptionInternalRelatedRedemptions.md +0 -9
  2551. data/docs/RedemptionInternalRelatedRedemptionsItem.md +0 -9
  2552. data/docs/RedemptionInternalRelatedRedemptionsRollbacksItem.md +0 -9
  2553. data/docs/RedemptionRelatedRedemptionsItem.md +0 -9
  2554. data/docs/RedemptionRewardResultProduct.md +0 -18
  2555. data/docs/RedemptionRewardResultSku.md +0 -19
  2556. data/docs/RedemptionRewardResultVoucher.md +0 -37
  2557. data/docs/RedemptionRollbackRelatedRedemptionsItem.md +0 -9
  2558. data/docs/ReferralCampaignVoucher.md +0 -12
  2559. data/docs/ReferrerWithSummaryLoyaltyReferrals.md +0 -25
  2560. data/docs/RewardAssignmentBase.md +0 -14
  2561. data/docs/RewardAssignmentParametersParameters.md +0 -8
  2562. data/docs/RewardAssignmentParametersParametersLoyalty.md +0 -8
  2563. data/docs/RewardAssignmentsCreateCoinRewardRequestBody.md +0 -9
  2564. data/docs/RewardAssignmentsCreateDigitalOrMaterialRewardRequestBody.md +0 -9
  2565. data/docs/RewardAssignmentsCreateDigitalOrMaterialRewardRequestBodyParameters.md +0 -8
  2566. data/docs/RewardAssignmentsCreateDigitalOrMaterialRewardRequestBodyParametersLoyalty.md +0 -8
  2567. data/docs/RewardTypeCampaignCampaign.md +0 -10
  2568. data/docs/RewardTypeCoinCoin.md +0 -9
  2569. data/docs/RewardTypeMaterial.md +0 -8
  2570. data/docs/RewardTypeMaterialProduct.md +0 -9
  2571. data/docs/SchemaThatContainsUniquePropertiesForPromotionCampaignPromotion.md +0 -8
  2572. data/docs/SimpleCampaign.md +0 -20
  2573. data/docs/SimpleConsent.md +0 -10
  2574. data/docs/SimpleOrder.md +0 -23
  2575. data/docs/SimpleOrderItem.md +0 -18
  2576. data/docs/SimpleProduct.md +0 -10
  2577. data/docs/SimplePromotionTier.md +0 -11
  2578. data/docs/SimplePromotionTierCampaign.md +0 -8
  2579. data/docs/SimpleRedemption.md +0 -20
  2580. data/docs/SimpleRedemptionRewardResult.md +0 -20
  2581. data/docs/SimpleReferralTier.md +0 -11
  2582. data/docs/SimpleSku.md +0 -10
  2583. data/docs/SkuWithProduct.md +0 -20
  2584. data/docs/SkusList.md +0 -11
  2585. data/docs/StackableDiscountsApi.md +0 -412
  2586. data/docs/StackableValidateRedeemBase.md +0 -13
  2587. data/docs/StackableValidateRedeemBaseRedeemablesItem.md +0 -55
  2588. data/docs/ValidationEntity.md +0 -15
  2589. data/docs/ValidationRuleBase.md +0 -13
  2590. data/docs/ValidationRuleBaseApplicableTo.md +0 -10
  2591. data/docs/ValidationRuleBaseError.md +0 -8
  2592. data/docs/ValidationsRedeemableApplicable.md +0 -16
  2593. data/docs/ValidationsRedeemableApplicableResult.md +0 -55
  2594. data/docs/ValidationsValidateAllResponseBody.md +0 -13
  2595. data/docs/ValidationsValidateAllResponseBodyRedeemablesItem.md +0 -51
  2596. data/docs/ValidationsValidatePartialResponseBody.md +0 -14
  2597. data/docs/VoucherTransactionsExport.md +0 -16
  2598. data/docs/VoucherTransactionsExportResult.md +0 -8
  2599. data/docs/VoucherValidityTimeframe.md +0 -9
  2600. data/docs/VouchersRedemptionGetResponseBodyRedemptionEntriesItem.md +0 -49
  2601. data/lib/VoucherifySdk/models/any.rb +0 -107
  2602. data/lib/VoucherifySdk/models/array_inner.rb +0 -106
  2603. data/lib/VoucherifySdk/models/async_actions.rb +0 -223
  2604. data/lib/VoucherifySdk/models/campaign_base_validity_timeframe.rb +0 -226
  2605. data/lib/VoucherifySdk/models/campaigns_create_base.rb +0 -422
  2606. data/lib/VoucherifySdk/models/campaigns_create_discount_coupons_campaign.rb +0 -461
  2607. data/lib/VoucherifySdk/models/campaigns_create_gift_campaign.rb +0 -461
  2608. data/lib/VoucherifySdk/models/campaigns_create_giveaway_campaign.rb +0 -470
  2609. data/lib/VoucherifySdk/models/campaigns_create_loyalty_campaign.rb +0 -461
  2610. data/lib/VoucherifySdk/models/campaigns_create_promotion_campaign.rb +0 -461
  2611. data/lib/VoucherifySdk/models/campaigns_create_referral_campaign.rb +0 -470
  2612. data/lib/VoucherifySdk/models/campaigns_disable_response_body.rb +0 -206
  2613. data/lib/VoucherifySdk/models/campaigns_enable_response_body.rb +0 -206
  2614. data/lib/VoucherifySdk/models/campaigns_import_voucher_loyalty_card.rb +0 -223
  2615. data/lib/VoucherifySdk/models/campaigns_update_base.rb +0 -300
  2616. data/lib/VoucherifySdk/models/campaigns_update_coupon_campaign_base.rb +0 -381
  2617. data/lib/VoucherifySdk/models/campaigns_update_discount_coupons_campaign.rb +0 -389
  2618. data/lib/VoucherifySdk/models/campaigns_update_gift_campaign.rb +0 -389
  2619. data/lib/VoucherifySdk/models/campaigns_update_giveaway_campaign.rb +0 -420
  2620. data/lib/VoucherifySdk/models/campaigns_update_loyalty_campaign.rb +0 -398
  2621. data/lib/VoucherifySdk/models/campaigns_update_promotion_campaign.rb +0 -306
  2622. data/lib/VoucherifySdk/models/campaigns_update_referral_campaign.rb +0 -398
  2623. data/lib/VoucherifySdk/models/campaigns_vouchers_create_base_request_body.rb +0 -264
  2624. data/lib/VoucherifySdk/models/campaigns_vouchers_create_in_bulk_response_body.rb +0 -230
  2625. data/lib/VoucherifySdk/models/client_redemptions_redeem_request_body_all_of_options.rb +0 -240
  2626. data/lib/VoucherifySdk/models/client_validations_validate_request_body_all_of_options.rb +0 -240
  2627. data/lib/VoucherifySdk/models/code_config_required_length_charset_pattern.rb +0 -293
  2628. data/lib/VoucherifySdk/models/create_publication_base.rb +0 -242
  2629. data/lib/VoucherifySdk/models/create_publication_with_campaign.rb +0 -265
  2630. data/lib/VoucherifySdk/models/create_publication_with_specific_voucher.rb +0 -266
  2631. data/lib/VoucherifySdk/models/custom_event.rb +0 -351
  2632. data/lib/VoucherifySdk/models/custom_event_referral.rb +0 -236
  2633. data/lib/VoucherifySdk/models/customer_activity_data.rb +0 -173
  2634. data/lib/VoucherifySdk/models/customer_base.rb +0 -285
  2635. data/lib/VoucherifySdk/models/customer_base_address.rb +0 -266
  2636. data/lib/VoucherifySdk/models/customer_loyalty_campaigns_value.rb +0 -236
  2637. data/lib/VoucherifySdk/models/customer_response_data_assets.rb +0 -216
  2638. data/lib/VoucherifySdk/models/customer_segments_list.rb +0 -276
  2639. data/lib/VoucherifySdk/models/discount_amount.rb +0 -311
  2640. data/lib/VoucherifySdk/models/discount_amount_vouchers_effect_types.rb +0 -43
  2641. data/lib/VoucherifySdk/models/discount_coupons_campaign_voucher.rb +0 -290
  2642. data/lib/VoucherifySdk/models/discount_fixed.rb +0 -301
  2643. data/lib/VoucherifySdk/models/discount_fixed_vouchers_effect_types.rb +0 -40
  2644. data/lib/VoucherifySdk/models/discount_percent.rb +0 -321
  2645. data/lib/VoucherifySdk/models/discount_percent_vouchers_effect_types.rb +0 -40
  2646. data/lib/VoucherifySdk/models/discount_unit.rb +0 -329
  2647. data/lib/VoucherifySdk/models/discount_unit_multiple.rb +0 -298
  2648. data/lib/VoucherifySdk/models/discount_unit_vouchers_effect_types.rb +0 -41
  2649. data/lib/VoucherifySdk/models/earning_rule_base.rb +0 -424
  2650. data/lib/VoucherifySdk/models/earning_rule_base_custom_event.rb +0 -221
  2651. data/lib/VoucherifySdk/models/earning_rule_base_loyalty.rb +0 -105
  2652. data/lib/VoucherifySdk/models/earning_rule_base_segment.rb +0 -223
  2653. data/lib/VoucherifySdk/models/earning_rule_base_source.rb +0 -284
  2654. data/lib/VoucherifySdk/models/earning_rule_base_validity_timeframe.rb +0 -240
  2655. data/lib/VoucherifySdk/models/earning_rule_event.rb +0 -46
  2656. data/lib/VoucherifySdk/models/earning_rule_fixed.rb +0 -261
  2657. data/lib/VoucherifySdk/models/earning_rule_proportional.rb +0 -107
  2658. data/lib/VoucherifySdk/models/earning_rule_proportional_custom_event.rb +0 -301
  2659. data/lib/VoucherifySdk/models/earning_rule_proportional_custom_event_custom_event.rb +0 -221
  2660. data/lib/VoucherifySdk/models/earning_rule_proportional_custom_event_custom_event_metadata.rb +0 -257
  2661. data/lib/VoucherifySdk/models/earning_rule_proportional_customer_metadata.rb +0 -301
  2662. data/lib/VoucherifySdk/models/earning_rule_proportional_customer_metadata_customer.rb +0 -221
  2663. data/lib/VoucherifySdk/models/earning_rule_proportional_customer_metadata_customer_metadata.rb +0 -257
  2664. data/lib/VoucherifySdk/models/earning_rule_proportional_order.rb +0 -106
  2665. data/lib/VoucherifySdk/models/earning_rule_proportional_order_amount.rb +0 -301
  2666. data/lib/VoucherifySdk/models/earning_rule_proportional_order_amount_order.rb +0 -221
  2667. data/lib/VoucherifySdk/models/earning_rule_proportional_order_amount_order_amount.rb +0 -240
  2668. data/lib/VoucherifySdk/models/earning_rule_proportional_order_items.rb +0 -106
  2669. data/lib/VoucherifySdk/models/earning_rule_proportional_order_items_amount.rb +0 -301
  2670. data/lib/VoucherifySdk/models/earning_rule_proportional_order_items_amount_order_items.rb +0 -221
  2671. data/lib/VoucherifySdk/models/earning_rule_proportional_order_items_amount_order_items_amount.rb +0 -308
  2672. data/lib/VoucherifySdk/models/earning_rule_proportional_order_items_quantity.rb +0 -301
  2673. data/lib/VoucherifySdk/models/earning_rule_proportional_order_items_quantity_order_items.rb +0 -221
  2674. data/lib/VoucherifySdk/models/earning_rule_proportional_order_items_subtotal_amount.rb +0 -301
  2675. data/lib/VoucherifySdk/models/earning_rule_proportional_order_items_subtotal_amount_order_items.rb +0 -221
  2676. data/lib/VoucherifySdk/models/earning_rule_proportional_order_metadata.rb +0 -301
  2677. data/lib/VoucherifySdk/models/earning_rule_proportional_order_metadata_order.rb +0 -222
  2678. data/lib/VoucherifySdk/models/earning_rule_proportional_order_metadata_order_metadata.rb +0 -257
  2679. data/lib/VoucherifySdk/models/earning_rule_proportional_order_total_amount.rb +0 -301
  2680. data/lib/VoucherifySdk/models/earning_rule_proportional_order_total_amount_order.rb +0 -221
  2681. data/lib/VoucherifySdk/models/event_customer_active_campaign_failed.rb +0 -248
  2682. data/lib/VoucherifySdk/models/event_customer_active_campaign_recovered.rb +0 -248
  2683. data/lib/VoucherifySdk/models/event_customer_active_campaign_sent.rb +0 -248
  2684. data/lib/VoucherifySdk/models/event_customer_batch_failed.rb +0 -248
  2685. data/lib/VoucherifySdk/models/event_customer_batch_recovered.rb +0 -248
  2686. data/lib/VoucherifySdk/models/event_customer_batch_sent.rb +0 -248
  2687. data/lib/VoucherifySdk/models/event_customer_braze_failed.rb +0 -248
  2688. data/lib/VoucherifySdk/models/event_customer_braze_recovered.rb +0 -248
  2689. data/lib/VoucherifySdk/models/event_customer_braze_sent.rb +0 -248
  2690. data/lib/VoucherifySdk/models/event_customer_confirmed.rb +0 -224
  2691. data/lib/VoucherifySdk/models/event_customer_confirmed_unconfirmed_customer.rb +0 -214
  2692. data/lib/VoucherifySdk/models/event_customer_consents.rb +0 -225
  2693. data/lib/VoucherifySdk/models/event_customer_consents_given.rb +0 -233
  2694. data/lib/VoucherifySdk/models/event_customer_consents_revoked.rb +0 -233
  2695. data/lib/VoucherifySdk/models/event_customer_created.rb +0 -215
  2696. data/lib/VoucherifySdk/models/event_customer_custom_event.rb +0 -222
  2697. data/lib/VoucherifySdk/models/event_customer_deleted.rb +0 -215
  2698. data/lib/VoucherifySdk/models/event_customer_email_failed.rb +0 -248
  2699. data/lib/VoucherifySdk/models/event_customer_email_recovered.rb +0 -248
  2700. data/lib/VoucherifySdk/models/event_customer_email_sent.rb +0 -248
  2701. data/lib/VoucherifySdk/models/event_customer_failed.rb +0 -240
  2702. data/lib/VoucherifySdk/models/event_customer_gift_voucher_balance_added.rb +0 -251
  2703. data/lib/VoucherifySdk/models/event_customer_intercom_failed.rb +0 -248
  2704. data/lib/VoucherifySdk/models/event_customer_intercom_recovered.rb +0 -248
  2705. data/lib/VoucherifySdk/models/event_customer_intercom_sent.rb +0 -248
  2706. data/lib/VoucherifySdk/models/event_customer_klaviyo_failed.rb +0 -248
  2707. data/lib/VoucherifySdk/models/event_customer_klaviyo_recovered.rb +0 -248
  2708. data/lib/VoucherifySdk/models/event_customer_klaviyo_sent.rb +0 -248
  2709. data/lib/VoucherifySdk/models/event_customer_loyalty_card_points_added.rb +0 -251
  2710. data/lib/VoucherifySdk/models/event_customer_loyalty_card_points_transferred.rb +0 -269
  2711. data/lib/VoucherifySdk/models/event_customer_loyalty_tier_base.rb +0 -223
  2712. data/lib/VoucherifySdk/models/event_customer_loyalty_tier_downgraded.rb +0 -279
  2713. data/lib/VoucherifySdk/models/event_customer_loyalty_tier_expiration_changed.rb +0 -279
  2714. data/lib/VoucherifySdk/models/event_customer_loyalty_tier_joined.rb +0 -263
  2715. data/lib/VoucherifySdk/models/event_customer_loyalty_tier_left.rb +0 -263
  2716. data/lib/VoucherifySdk/models/event_customer_loyalty_tier_prolonged.rb +0 -263
  2717. data/lib/VoucherifySdk/models/event_customer_loyalty_tier_upgraded.rb +0 -272
  2718. data/lib/VoucherifySdk/models/event_customer_loyalty_updated.rb +0 -249
  2719. data/lib/VoucherifySdk/models/event_customer_mailchimp_failed.rb +0 -248
  2720. data/lib/VoucherifySdk/models/event_customer_mailchimp_recovered.rb +0 -248
  2721. data/lib/VoucherifySdk/models/event_customer_mailchimp_sent.rb +0 -248
  2722. data/lib/VoucherifySdk/models/event_customer_order.rb +0 -241
  2723. data/lib/VoucherifySdk/models/event_customer_order_canceled.rb +0 -249
  2724. data/lib/VoucherifySdk/models/event_customer_order_created.rb +0 -249
  2725. data/lib/VoucherifySdk/models/event_customer_order_fulfilled.rb +0 -249
  2726. data/lib/VoucherifySdk/models/event_customer_order_paid.rb +0 -249
  2727. data/lib/VoucherifySdk/models/event_customer_order_processing.rb +0 -249
  2728. data/lib/VoucherifySdk/models/event_customer_order_updated.rb +0 -249
  2729. data/lib/VoucherifySdk/models/event_customer_publication_failed.rb +0 -233
  2730. data/lib/VoucherifySdk/models/event_customer_publication_succeeded.rb +0 -233
  2731. data/lib/VoucherifySdk/models/event_customer_recovered.rb +0 -240
  2732. data/lib/VoucherifySdk/models/event_customer_redemption.rb +0 -268
  2733. data/lib/VoucherifySdk/models/event_customer_redemption_failed.rb +0 -276
  2734. data/lib/VoucherifySdk/models/event_customer_redemption_rollback_failed.rb +0 -285
  2735. data/lib/VoucherifySdk/models/event_customer_redemption_rollback_succeeded.rb +0 -285
  2736. data/lib/VoucherifySdk/models/event_customer_redemption_succeeded.rb +0 -276
  2737. data/lib/VoucherifySdk/models/event_customer_referred.rb +0 -288
  2738. data/lib/VoucherifySdk/models/event_customer_reward_redemptions.rb +0 -286
  2739. data/lib/VoucherifySdk/models/event_customer_reward_redemptions_completed.rb +0 -294
  2740. data/lib/VoucherifySdk/models/event_customer_reward_redemptions_created.rb +0 -294
  2741. data/lib/VoucherifySdk/models/event_customer_reward_redemptions_pending.rb +0 -294
  2742. data/lib/VoucherifySdk/models/event_customer_reward_redemptions_rolled_back.rb +0 -294
  2743. data/lib/VoucherifySdk/models/event_customer_rewarded.rb +0 -296
  2744. data/lib/VoucherifySdk/models/event_customer_rewarded_loyalty_points.rb +0 -287
  2745. data/lib/VoucherifySdk/models/event_customer_segment_entered.rb +0 -238
  2746. data/lib/VoucherifySdk/models/event_customer_segment_left.rb +0 -238
  2747. data/lib/VoucherifySdk/models/event_customer_sent.rb +0 -240
  2748. data/lib/VoucherifySdk/models/event_customer_shopify_failed.rb +0 -248
  2749. data/lib/VoucherifySdk/models/event_customer_shopify_recovered.rb +0 -248
  2750. data/lib/VoucherifySdk/models/event_customer_shopify_sent.rb +0 -248
  2751. data/lib/VoucherifySdk/models/event_customer_sms_failed.rb +0 -248
  2752. data/lib/VoucherifySdk/models/event_customer_sms_recovered.rb +0 -248
  2753. data/lib/VoucherifySdk/models/event_customer_sms_sent.rb +0 -248
  2754. data/lib/VoucherifySdk/models/event_customer_updated.rb +0 -215
  2755. data/lib/VoucherifySdk/models/event_customer_validation_failed.rb +0 -224
  2756. data/lib/VoucherifySdk/models/event_customer_validation_succeeded.rb +0 -224
  2757. data/lib/VoucherifySdk/models/event_customer_voucher_deleted.rb +0 -233
  2758. data/lib/VoucherifySdk/models/event_customer_vouchers_loyalty_points_expired.rb +0 -262
  2759. data/lib/VoucherifySdk/models/export_base.rb +0 -354
  2760. data/lib/VoucherifySdk/models/export_base_result.rb +0 -223
  2761. data/lib/VoucherifySdk/models/export_customer.rb +0 -400
  2762. data/lib/VoucherifySdk/models/export_customer_base.rb +0 -265
  2763. data/lib/VoucherifySdk/models/export_customer_base_parameters.rb +0 -259
  2764. data/lib/VoucherifySdk/models/export_customer_fields.rb +0 -68
  2765. data/lib/VoucherifySdk/models/export_customer_order.rb +0 -50
  2766. data/lib/VoucherifySdk/models/export_customer_scheduled.rb +0 -405
  2767. data/lib/VoucherifySdk/models/export_order.rb +0 -400
  2768. data/lib/VoucherifySdk/models/export_order_base.rb +0 -265
  2769. data/lib/VoucherifySdk/models/export_order_scheduled.rb +0 -405
  2770. data/lib/VoucherifySdk/models/export_points_expiration.rb +0 -400
  2771. data/lib/VoucherifySdk/models/export_points_expiration_base.rb +0 -265
  2772. data/lib/VoucherifySdk/models/export_points_expiration_base_parameters.rb +0 -258
  2773. data/lib/VoucherifySdk/models/export_points_expiration_fields.rb +0 -44
  2774. data/lib/VoucherifySdk/models/export_points_expiration_filters.rb +0 -254
  2775. data/lib/VoucherifySdk/models/export_points_expiration_order.rb +0 -40
  2776. data/lib/VoucherifySdk/models/export_points_expiration_scheduled.rb +0 -405
  2777. data/lib/VoucherifySdk/models/export_publication.rb +0 -400
  2778. data/lib/VoucherifySdk/models/export_publication_base.rb +0 -265
  2779. data/lib/VoucherifySdk/models/export_publication_base_parameters.rb +0 -259
  2780. data/lib/VoucherifySdk/models/export_publication_fields.rb +0 -46
  2781. data/lib/VoucherifySdk/models/export_publication_order.rb +0 -50
  2782. data/lib/VoucherifySdk/models/export_publication_scheduled.rb +0 -405
  2783. data/lib/VoucherifySdk/models/export_redemption.rb +0 -400
  2784. data/lib/VoucherifySdk/models/export_redemption_base.rb +0 -265
  2785. data/lib/VoucherifySdk/models/export_redemption_base_parameters.rb +0 -259
  2786. data/lib/VoucherifySdk/models/export_redemption_fields.rb +0 -55
  2787. data/lib/VoucherifySdk/models/export_redemption_order.rb +0 -48
  2788. data/lib/VoucherifySdk/models/export_redemption_scheduled.rb +0 -405
  2789. data/lib/VoucherifySdk/models/export_scheduled_base.rb +0 -359
  2790. data/lib/VoucherifySdk/models/export_voucher.rb +0 -400
  2791. data/lib/VoucherifySdk/models/export_voucher_base.rb +0 -265
  2792. data/lib/VoucherifySdk/models/export_voucher_base_parameters.rb +0 -258
  2793. data/lib/VoucherifySdk/models/export_voucher_fields.rb +0 -68
  2794. data/lib/VoucherifySdk/models/export_voucher_order.rb +0 -44
  2795. data/lib/VoucherifySdk/models/export_voucher_scheduled.rb +0 -405
  2796. data/lib/VoucherifySdk/models/export_voucher_transactions.rb +0 -400
  2797. data/lib/VoucherifySdk/models/export_voucher_transactions_base.rb +0 -265
  2798. data/lib/VoucherifySdk/models/export_voucher_transactions_scheduled.rb +0 -405
  2799. data/lib/VoucherifySdk/models/gift_campaign_voucher.rb +0 -291
  2800. data/lib/VoucherifySdk/models/giveaway_campaign_voucher.rb +0 -300
  2801. data/lib/VoucherifySdk/models/list_publications_item_base.rb +0 -399
  2802. data/lib/VoucherifySdk/models/list_publications_item_invalid.rb +0 -455
  2803. data/lib/VoucherifySdk/models/list_publications_item_valid_multiple_vouchers.rb +0 -454
  2804. data/lib/VoucherifySdk/models/list_publications_item_valid_single_voucher.rb +0 -451
  2805. data/lib/VoucherifySdk/models/loyalties_members_transfers_create_response_body_validity_timeframe.rb +0 -226
  2806. data/lib/VoucherifySdk/models/loyalty_tier_all_of_config.rb +0 -222
  2807. data/lib/VoucherifySdk/models/loyalty_tier_all_of_config_points.rb +0 -226
  2808. data/lib/VoucherifySdk/models/lucky_draw.rb +0 -246
  2809. data/lib/VoucherifySdk/models/mapping_fixed.rb +0 -261
  2810. data/lib/VoucherifySdk/models/mapping_multiply.rb +0 -261
  2811. data/lib/VoucherifySdk/models/order_base.rb +0 -339
  2812. data/lib/VoucherifySdk/models/order_calculated_base.rb +0 -472
  2813. data/lib/VoucherifySdk/models/order_calculated_customer.rb +0 -105
  2814. data/lib/VoucherifySdk/models/order_calculated_no_customer_data.rb +0 -496
  2815. data/lib/VoucherifySdk/models/order_calculated_referrer.rb +0 -105
  2816. data/lib/VoucherifySdk/models/order_item_calculated.rb +0 -436
  2817. data/lib/VoucherifySdk/models/order_redemptions.rb +0 -291
  2818. data/lib/VoucherifySdk/models/product_collections_create_dynamic_request_body.rb +0 -290
  2819. data/lib/VoucherifySdk/models/product_collections_create_dynamic_request_body_filter.rb +0 -352
  2820. data/lib/VoucherifySdk/models/product_collections_create_dynamic_request_body_products_item.rb +0 -283
  2821. data/lib/VoucherifySdk/models/product_collections_create_static_request_body.rb +0 -286
  2822. data/lib/VoucherifySdk/models/product_collections_list.rb +0 -322
  2823. data/lib/VoucherifySdk/models/product_collections_products_list.rb +0 -276
  2824. data/lib/VoucherifySdk/models/product_collections_products_list_products_item.rb +0 -105
  2825. data/lib/VoucherifySdk/models/promotion_tier_campaign_validity_timeframe.rb +0 -226
  2826. data/lib/VoucherifySdk/models/promotion_tier_validity_timeframe.rb +0 -226
  2827. data/lib/VoucherifySdk/models/properties_for_loyalty_campaign_options.rb +0 -215
  2828. data/lib/VoucherifySdk/models/publications_create_base_response_body.rb +0 -440
  2829. data/lib/VoucherifySdk/models/publications_create_voucher_response_body.rb +0 -464
  2830. data/lib/VoucherifySdk/models/publications_create_vouchers_response_body.rb +0 -467
  2831. data/lib/VoucherifySdk/models/redeem_gift_card.rb +0 -289
  2832. data/lib/VoucherifySdk/models/redeem_gift_card_all_of_gift.rb +0 -216
  2833. data/lib/VoucherifySdk/models/redeem_loyalty_card.rb +0 -289
  2834. data/lib/VoucherifySdk/models/redeem_loyalty_card_all_of_reward.rb +0 -226
  2835. data/lib/VoucherifySdk/models/redeem_promotion_stack.rb +0 -274
  2836. data/lib/VoucherifySdk/models/redeem_promotion_tier.rb +0 -274
  2837. data/lib/VoucherifySdk/models/redeem_voucher.rb +0 -274
  2838. data/lib/VoucherifySdk/models/redeemable_result_gift_card.rb +0 -215
  2839. data/lib/VoucherifySdk/models/redeemable_result_gift_card_gift.rb +0 -216
  2840. data/lib/VoucherifySdk/models/redeemable_result_loyalty_card.rb +0 -215
  2841. data/lib/VoucherifySdk/models/redeemable_result_loyalty_card_loyalty_card.rb +0 -216
  2842. data/lib/VoucherifySdk/models/redeemable_result_promotion_stack.rb +0 -215
  2843. data/lib/VoucherifySdk/models/redeemable_result_promotion_tier.rb +0 -215
  2844. data/lib/VoucherifySdk/models/redeemable_result_promotion_tier_discount.rb +0 -109
  2845. data/lib/VoucherifySdk/models/redeemable_result_voucher_code.rb +0 -215
  2846. data/lib/VoucherifySdk/models/redemption_internal.rb +0 -542
  2847. data/lib/VoucherifySdk/models/redemption_internal_related_redemptions.rb +0 -227
  2848. data/lib/VoucherifySdk/models/redemption_internal_related_redemptions_item.rb +0 -225
  2849. data/lib/VoucherifySdk/models/redemption_internal_related_redemptions_rollbacks_item.rb +0 -225
  2850. data/lib/VoucherifySdk/models/redemption_related_redemptions_item.rb +0 -225
  2851. data/lib/VoucherifySdk/models/redemption_reward_result_product.rb +0 -397
  2852. data/lib/VoucherifySdk/models/redemption_reward_result_sku.rb +0 -425
  2853. data/lib/VoucherifySdk/models/redemption_reward_result_voucher.rb +0 -547
  2854. data/lib/VoucherifySdk/models/redemption_rollback_related_redemptions_item.rb +0 -225
  2855. data/lib/VoucherifySdk/models/referral_campaign_voucher.rb +0 -307
  2856. data/lib/VoucherifySdk/models/referrer_with_summary_loyalty_referrals.rb +0 -438
  2857. data/lib/VoucherifySdk/models/reward_assignment_base.rb +0 -366
  2858. data/lib/VoucherifySdk/models/reward_assignment_parameters_parameters.rb +0 -222
  2859. data/lib/VoucherifySdk/models/reward_assignment_parameters_parameters_loyalty.rb +0 -216
  2860. data/lib/VoucherifySdk/models/reward_assignments_create_coin_reward_request_body.rb +0 -234
  2861. data/lib/VoucherifySdk/models/reward_assignments_create_digital_or_material_reward_request_body.rb +0 -239
  2862. data/lib/VoucherifySdk/models/reward_assignments_create_digital_or_material_reward_request_body_parameters.rb +0 -222
  2863. data/lib/VoucherifySdk/models/reward_assignments_create_digital_or_material_reward_request_body_parameters_loyalty.rb +0 -216
  2864. data/lib/VoucherifySdk/models/reward_type_campaign_campaign.rb +0 -284
  2865. data/lib/VoucherifySdk/models/reward_type_coin_coin.rb +0 -233
  2866. data/lib/VoucherifySdk/models/reward_type_material.rb +0 -221
  2867. data/lib/VoucherifySdk/models/reward_type_material_product.rb +0 -236
  2868. data/lib/VoucherifySdk/models/schema_that_contains_unique_properties_for_promotion_campaign_promotion.rb +0 -217
  2869. data/lib/VoucherifySdk/models/simple_campaign.rb +0 -381
  2870. data/lib/VoucherifySdk/models/simple_consent.rb +0 -273
  2871. data/lib/VoucherifySdk/models/simple_order.rb +0 -423
  2872. data/lib/VoucherifySdk/models/simple_order_item.rb +0 -363
  2873. data/lib/VoucherifySdk/models/simple_product.rb +0 -235
  2874. data/lib/VoucherifySdk/models/simple_promotion_tier.rb +0 -245
  2875. data/lib/VoucherifySdk/models/simple_promotion_tier_campaign.rb +0 -216
  2876. data/lib/VoucherifySdk/models/simple_redemption.rb +0 -368
  2877. data/lib/VoucherifySdk/models/simple_redemption_reward_result.rb +0 -380
  2878. data/lib/VoucherifySdk/models/simple_referral_tier.rb +0 -245
  2879. data/lib/VoucherifySdk/models/simple_sku.rb +0 -235
  2880. data/lib/VoucherifySdk/models/sku_with_product.rb +0 -433
  2881. data/lib/VoucherifySdk/models/skus_list.rb +0 -276
  2882. data/lib/VoucherifySdk/models/stackable_validate_redeem_base.rb +0 -299
  2883. data/lib/VoucherifySdk/models/stackable_validate_redeem_base_redeemables_item.rb +0 -108
  2884. data/lib/VoucherifySdk/models/validation_entity.rb +0 -325
  2885. data/lib/VoucherifySdk/models/validation_rule_base.rb +0 -314
  2886. data/lib/VoucherifySdk/models/validation_rule_base_applicable_to.rb +0 -239
  2887. data/lib/VoucherifySdk/models/validation_rule_base_error.rb +0 -216
  2888. data/lib/VoucherifySdk/models/validations_redeemable_applicable.rb +0 -340
  2889. data/lib/VoucherifySdk/models/validations_redeemable_applicable_result.rb +0 -109
  2890. data/lib/VoucherifySdk/models/validations_validate_all_response_body_redeemables_item.rb +0 -106
  2891. data/lib/VoucherifySdk/models/voucher_transactions_export.rb +0 -407
  2892. data/lib/VoucherifySdk/models/voucher_transactions_export_result.rb +0 -223
  2893. data/lib/VoucherifySdk/models/voucher_validity_timeframe.rb +0 -226
  2894. data/lib/VoucherifySdk/models/vouchers_redemption_get_response_body_redemption_entries_item.rb +0 -105
@@ -0,0 +1,2407 @@
1
+ =begin
2
+ #Voucherify API
3
+
4
+ #Voucherify promotion engine REST API. Please see https://docs.voucherify.io/docs for more details.
5
+
6
+ The version of the OpenAPI document: v2018-08-01
7
+ Contact: support@voucherify.io
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 7.0.1
10
+
11
+ =end
12
+
13
+ require 'cgi'
14
+
15
+ module VoucherifySdk
16
+ class ManagementApi
17
+ attr_accessor :api_client
18
+
19
+ def initialize(api_client = ApiClient.default)
20
+ @api_client = api_client
21
+ end
22
+ # Assign User
23
+ # Assigns a user to a given project. The user must be an existing user in Voucherify. 🚧 Correct Use of Data To avoid errors, use the role key with either id or login keys.
24
+ # @param project_id [String] Provide the unique identifier of the project.
25
+ # @param [Hash] opts the optional parameters
26
+ # @option opts [ManagementProjectsUsersAssignRequestBody] :management_projects_users_assign_request_body Defines the user details.
27
+ # @return [ManagementProjectsUsersAssignResponseBody]
28
+ def assign_user(project_id, opts = {})
29
+ data, _status_code, _headers = assign_user_with_http_info(project_id, opts)
30
+ data
31
+ end
32
+
33
+ # Assign User
34
+ # Assigns a user to a given project. The user must be an existing user in Voucherify. 🚧 Correct Use of Data To avoid errors, use the role key with either id or login keys.
35
+ # @param project_id [String] Provide the unique identifier of the project.
36
+ # @param [Hash] opts the optional parameters
37
+ # @option opts [ManagementProjectsUsersAssignRequestBody] :management_projects_users_assign_request_body Defines the user details.
38
+ # @return [Array<(ManagementProjectsUsersAssignResponseBody, Integer, Hash)>] ManagementProjectsUsersAssignResponseBody data, response status code and response headers
39
+ private def assign_user_with_http_info(project_id, opts = {})
40
+ if @api_client.config.debugging
41
+ @api_client.config.logger.debug 'Calling API: ManagementApi.assign_user ...'
42
+ end
43
+ # resource path
44
+ local_var_path = '/management/v1/projects/{projectId}/users'.sub('{' + 'projectId' + '}', CGI.escape(project_id.to_s))
45
+
46
+ # query parameters
47
+ query_params = opts[:query_params] || {}
48
+
49
+ # header parameters
50
+ header_params = opts[:header_params] || {}
51
+ # HTTP header 'Accept' (if needed)
52
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
53
+ # HTTP header 'Content-Type'
54
+ content_type = @api_client.select_header_content_type(['application/json'])
55
+ if !content_type.nil?
56
+ header_params['Content-Type'] = content_type
57
+ end
58
+
59
+ # form parameters
60
+ form_params = opts[:form_params] || {}
61
+
62
+ # http body (model)
63
+ post_body = opts[:debug_body] || @api_client.object_to_http_body(opts[:'management_projects_users_assign_request_body'])
64
+
65
+ # return_type
66
+ return_type = opts[:debug_return_type] || 'ManagementProjectsUsersAssignResponseBody'
67
+
68
+ # auth_names
69
+ auth_names = opts[:debug_auth_names] || ['X-Management-Token', 'X-Management-Id']
70
+
71
+ new_options = opts.merge(
72
+ :operation => :"ManagementApi.assign_user",
73
+ :header_params => header_params,
74
+ :query_params => query_params,
75
+ :form_params => form_params,
76
+ :body => post_body,
77
+ :auth_names => auth_names,
78
+ :return_type => return_type
79
+ )
80
+
81
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
82
+ if @api_client.config.debugging
83
+ @api_client.config.logger.debug "API called: ManagementApi#assign_user\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
84
+ end
85
+ return data, status_code, headers
86
+ end
87
+
88
+ # Create Brand
89
+ # Creates a new brand configuration. You can have only one brand configured for a project. 📘 White Labelling The white labelling settings which can be found in Project Settings > Brand Details and which are available only for Enterprise clients as a separate service can be configured only in the user interface.
90
+ # @param project_id [String] Provide the unique identifier of the project.
91
+ # @param [Hash] opts the optional parameters
92
+ # @option opts [ManagementProjectsBrandingCreateRequestBody] :management_projects_branding_create_request_body Defines a brand configuration.
93
+ # @return [ManagementProjectsBrandingCreateResponseBody]
94
+ def create_brand(project_id, opts = {})
95
+ data, _status_code, _headers = create_brand_with_http_info(project_id, opts)
96
+ data
97
+ end
98
+
99
+ # Create Brand
100
+ # Creates a new brand configuration. You can have only one brand configured for a project. 📘 White Labelling The white labelling settings which can be found in Project Settings &gt; Brand Details and which are available only for Enterprise clients as a separate service can be configured only in the user interface.
101
+ # @param project_id [String] Provide the unique identifier of the project.
102
+ # @param [Hash] opts the optional parameters
103
+ # @option opts [ManagementProjectsBrandingCreateRequestBody] :management_projects_branding_create_request_body Defines a brand configuration.
104
+ # @return [Array<(ManagementProjectsBrandingCreateResponseBody, Integer, Hash)>] ManagementProjectsBrandingCreateResponseBody data, response status code and response headers
105
+ private def create_brand_with_http_info(project_id, opts = {})
106
+ if @api_client.config.debugging
107
+ @api_client.config.logger.debug 'Calling API: ManagementApi.create_brand ...'
108
+ end
109
+ # resource path
110
+ local_var_path = '/management/v1/projects/{projectId}/branding'.sub('{' + 'projectId' + '}', CGI.escape(project_id.to_s))
111
+
112
+ # query parameters
113
+ query_params = opts[:query_params] || {}
114
+
115
+ # header parameters
116
+ header_params = opts[:header_params] || {}
117
+ # HTTP header 'Accept' (if needed)
118
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
119
+ # HTTP header 'Content-Type'
120
+ content_type = @api_client.select_header_content_type(['application/json'])
121
+ if !content_type.nil?
122
+ header_params['Content-Type'] = content_type
123
+ end
124
+
125
+ # form parameters
126
+ form_params = opts[:form_params] || {}
127
+
128
+ # http body (model)
129
+ post_body = opts[:debug_body] || @api_client.object_to_http_body(opts[:'management_projects_branding_create_request_body'])
130
+
131
+ # return_type
132
+ return_type = opts[:debug_return_type] || 'ManagementProjectsBrandingCreateResponseBody'
133
+
134
+ # auth_names
135
+ auth_names = opts[:debug_auth_names] || ['X-Management-Token', 'X-Management-Id']
136
+
137
+ new_options = opts.merge(
138
+ :operation => :"ManagementApi.create_brand",
139
+ :header_params => header_params,
140
+ :query_params => query_params,
141
+ :form_params => form_params,
142
+ :body => post_body,
143
+ :auth_names => auth_names,
144
+ :return_type => return_type
145
+ )
146
+
147
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
148
+ if @api_client.config.debugging
149
+ @api_client.config.logger.debug "API called: ManagementApi#create_brand\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
150
+ end
151
+ return data, status_code, headers
152
+ end
153
+
154
+ # Create Custom Event Schema
155
+ # Creates a custom event schema. The properties object is required, but it can be empty, however. This object is for optional custom properties (metadata). 📘 Custom Event Documentation Read [Custom Events](https://support.voucherify.io/article/111-custom-events) article to learn how custom events work in Voucherify. Read also the details about the Track Custom Event endpoint and the Custom Event Object.
156
+ # @param project_id [String] Provide the unique identifier of the project.
157
+ # @param [Hash] opts the optional parameters
158
+ # @option opts [ManagementProjectsCustomEventSchemasCreateRequestBody] :management_projects_custom_event_schemas_create_request_body Defines the custom event schema.
159
+ # @return [ManagementProjectsCustomEventSchemasCreateResponseBody]
160
+ def create_custom_event_schema(project_id, opts = {})
161
+ data, _status_code, _headers = create_custom_event_schema_with_http_info(project_id, opts)
162
+ data
163
+ end
164
+
165
+ # Create Custom Event Schema
166
+ # Creates a custom event schema. The properties object is required, but it can be empty, however. This object is for optional custom properties (metadata). 📘 Custom Event Documentation Read [Custom Events](https://support.voucherify.io/article/111-custom-events) article to learn how custom events work in Voucherify. Read also the details about the Track Custom Event endpoint and the Custom Event Object.
167
+ # @param project_id [String] Provide the unique identifier of the project.
168
+ # @param [Hash] opts the optional parameters
169
+ # @option opts [ManagementProjectsCustomEventSchemasCreateRequestBody] :management_projects_custom_event_schemas_create_request_body Defines the custom event schema.
170
+ # @return [Array<(ManagementProjectsCustomEventSchemasCreateResponseBody, Integer, Hash)>] ManagementProjectsCustomEventSchemasCreateResponseBody data, response status code and response headers
171
+ private def create_custom_event_schema_with_http_info(project_id, opts = {})
172
+ if @api_client.config.debugging
173
+ @api_client.config.logger.debug 'Calling API: ManagementApi.create_custom_event_schema ...'
174
+ end
175
+ # resource path
176
+ local_var_path = '/management/v1/projects/{projectId}/custom-event-schemas'.sub('{' + 'projectId' + '}', CGI.escape(project_id.to_s))
177
+
178
+ # query parameters
179
+ query_params = opts[:query_params] || {}
180
+
181
+ # header parameters
182
+ header_params = opts[:header_params] || {}
183
+ # HTTP header 'Accept' (if needed)
184
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
185
+ # HTTP header 'Content-Type'
186
+ content_type = @api_client.select_header_content_type(['application/json'])
187
+ if !content_type.nil?
188
+ header_params['Content-Type'] = content_type
189
+ end
190
+
191
+ # form parameters
192
+ form_params = opts[:form_params] || {}
193
+
194
+ # http body (model)
195
+ post_body = opts[:debug_body] || @api_client.object_to_http_body(opts[:'management_projects_custom_event_schemas_create_request_body'])
196
+
197
+ # return_type
198
+ return_type = opts[:debug_return_type] || 'ManagementProjectsCustomEventSchemasCreateResponseBody'
199
+
200
+ # auth_names
201
+ auth_names = opts[:debug_auth_names] || ['X-Management-Token', 'X-Management-Id']
202
+
203
+ new_options = opts.merge(
204
+ :operation => :"ManagementApi.create_custom_event_schema",
205
+ :header_params => header_params,
206
+ :query_params => query_params,
207
+ :form_params => form_params,
208
+ :body => post_body,
209
+ :auth_names => auth_names,
210
+ :return_type => return_type
211
+ )
212
+
213
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
214
+ if @api_client.config.debugging
215
+ @api_client.config.logger.debug "API called: ManagementApi#create_custom_event_schema\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
216
+ end
217
+ return data, status_code, headers
218
+ end
219
+
220
+ # Create Metadata Schema
221
+ # Creates a new metadata (custom attribute) schema. The schema consists of a set of key-value pairs to customize Voucherify resources. You can nest your object within a standard metadata schema, e.g. within a campaign or customer schema. However, your nested object cannot include another nested object. The standard metadata schemas are: - Campaign - Voucher - Publication - Redemption - Product - Customer - Order - Order line item - Loyalty Tier - Promotion Tier - Earning rule - Reward 📘 Metadata Documentation Read the Getting Started with Metadata articles to learn how metadata work in Voucherify.
222
+ # @param project_id [String] Provide the unique identifier of the project.
223
+ # @param [Hash] opts the optional parameters
224
+ # @option opts [ManagementProjectsMetadataSchemasCreateRequestBody] :management_projects_metadata_schemas_create_request_body Defines the metadata schema.
225
+ # @return [ManagementProjectsMetadataSchemasCreateResponseBody]
226
+ def create_metadata_schema(project_id, opts = {})
227
+ data, _status_code, _headers = create_metadata_schema_with_http_info(project_id, opts)
228
+ data
229
+ end
230
+
231
+ # Create Metadata Schema
232
+ # Creates a new metadata (custom attribute) schema. The schema consists of a set of key-value pairs to customize Voucherify resources. You can nest your object within a standard metadata schema, e.g. within a campaign or customer schema. However, your nested object cannot include another nested object. The standard metadata schemas are: - Campaign - Voucher - Publication - Redemption - Product - Customer - Order - Order line item - Loyalty Tier - Promotion Tier - Earning rule - Reward 📘 Metadata Documentation Read the Getting Started with Metadata articles to learn how metadata work in Voucherify.
233
+ # @param project_id [String] Provide the unique identifier of the project.
234
+ # @param [Hash] opts the optional parameters
235
+ # @option opts [ManagementProjectsMetadataSchemasCreateRequestBody] :management_projects_metadata_schemas_create_request_body Defines the metadata schema.
236
+ # @return [Array<(ManagementProjectsMetadataSchemasCreateResponseBody, Integer, Hash)>] ManagementProjectsMetadataSchemasCreateResponseBody data, response status code and response headers
237
+ private def create_metadata_schema_with_http_info(project_id, opts = {})
238
+ if @api_client.config.debugging
239
+ @api_client.config.logger.debug 'Calling API: ManagementApi.create_metadata_schema ...'
240
+ end
241
+ # resource path
242
+ local_var_path = '/management/v1/projects/{projectId}/metadata-schemas'.sub('{' + 'projectId' + '}', CGI.escape(project_id.to_s))
243
+
244
+ # query parameters
245
+ query_params = opts[:query_params] || {}
246
+
247
+ # header parameters
248
+ header_params = opts[:header_params] || {}
249
+ # HTTP header 'Accept' (if needed)
250
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
251
+ # HTTP header 'Content-Type'
252
+ content_type = @api_client.select_header_content_type(['application/json'])
253
+ if !content_type.nil?
254
+ header_params['Content-Type'] = content_type
255
+ end
256
+
257
+ # form parameters
258
+ form_params = opts[:form_params] || {}
259
+
260
+ # http body (model)
261
+ post_body = opts[:debug_body] || @api_client.object_to_http_body(opts[:'management_projects_metadata_schemas_create_request_body'])
262
+
263
+ # return_type
264
+ return_type = opts[:debug_return_type] || 'ManagementProjectsMetadataSchemasCreateResponseBody'
265
+
266
+ # auth_names
267
+ auth_names = opts[:debug_auth_names] || ['X-Management-Token', 'X-Management-Id']
268
+
269
+ new_options = opts.merge(
270
+ :operation => :"ManagementApi.create_metadata_schema",
271
+ :header_params => header_params,
272
+ :query_params => query_params,
273
+ :form_params => form_params,
274
+ :body => post_body,
275
+ :auth_names => auth_names,
276
+ :return_type => return_type
277
+ )
278
+
279
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
280
+ if @api_client.config.debugging
281
+ @api_client.config.logger.debug "API called: ManagementApi#create_metadata_schema\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
282
+ end
283
+ return data, status_code, headers
284
+ end
285
+
286
+ # Create Project
287
+ # Creates a new project. You can add users, specify the cluster, timezone, currency, and other details. All owners are added to the project by default.
288
+ # @param [Hash] opts the optional parameters
289
+ # @option opts [ManagementProjectsCreateRequestBody] :management_projects_create_request_body Define project details.
290
+ # @return [ManagementProjectsCreateResponseBody]
291
+ def create_project(opts = {})
292
+ data, _status_code, _headers = create_project_with_http_info(opts)
293
+ data
294
+ end
295
+
296
+ # Create Project
297
+ # Creates a new project. You can add users, specify the cluster, timezone, currency, and other details. All owners are added to the project by default.
298
+ # @param [Hash] opts the optional parameters
299
+ # @option opts [ManagementProjectsCreateRequestBody] :management_projects_create_request_body Define project details.
300
+ # @return [Array<(ManagementProjectsCreateResponseBody, Integer, Hash)>] ManagementProjectsCreateResponseBody data, response status code and response headers
301
+ private def create_project_with_http_info(opts = {})
302
+ if @api_client.config.debugging
303
+ @api_client.config.logger.debug 'Calling API: ManagementApi.create_project ...'
304
+ end
305
+ # resource path
306
+ local_var_path = '/management/v1/projects'
307
+
308
+ # query parameters
309
+ query_params = opts[:query_params] || {}
310
+
311
+ # header parameters
312
+ header_params = opts[:header_params] || {}
313
+ # HTTP header 'Accept' (if needed)
314
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
315
+ # HTTP header 'Content-Type'
316
+ content_type = @api_client.select_header_content_type(['application/json'])
317
+ if !content_type.nil?
318
+ header_params['Content-Type'] = content_type
319
+ end
320
+
321
+ # form parameters
322
+ form_params = opts[:form_params] || {}
323
+
324
+ # http body (model)
325
+ post_body = opts[:debug_body] || @api_client.object_to_http_body(opts[:'management_projects_create_request_body'])
326
+
327
+ # return_type
328
+ return_type = opts[:debug_return_type] || 'ManagementProjectsCreateResponseBody'
329
+
330
+ # auth_names
331
+ auth_names = opts[:debug_auth_names] || ['X-Management-Token', 'X-Management-Id']
332
+
333
+ new_options = opts.merge(
334
+ :operation => :"ManagementApi.create_project",
335
+ :header_params => header_params,
336
+ :query_params => query_params,
337
+ :form_params => form_params,
338
+ :body => post_body,
339
+ :auth_names => auth_names,
340
+ :return_type => return_type
341
+ )
342
+
343
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
344
+ if @api_client.config.debugging
345
+ @api_client.config.logger.debug "API called: ManagementApi#create_project\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
346
+ end
347
+ return data, status_code, headers
348
+ end
349
+
350
+ # Create Stacking Rules
351
+ # Overwrites the default stacking rules. If new stacking rules have been created for the project earlier (e.g. in the user interface), it returns an error. Use Update Stacking Rules endpoint to change the rules. 📘 Stacking Rules Documentation Read [the Stacking Rules article](https://support.voucherify.io/article/604-stacking-rules) to learn how they work.
352
+ # @param project_id [String] Provide the unique identifier of the project.
353
+ # @param [Hash] opts the optional parameters
354
+ # @option opts [ManagementProjectsStackingRulesCreateRequestBody] :management_projects_stacking_rules_create_request_body Defines the stacking rule parameters.
355
+ # @return [ManagementProjectsStackingRulesCreateResponseBody]
356
+ def create_stacking_rules(project_id, opts = {})
357
+ data, _status_code, _headers = create_stacking_rules_with_http_info(project_id, opts)
358
+ data
359
+ end
360
+
361
+ # Create Stacking Rules
362
+ # Overwrites the default stacking rules. If new stacking rules have been created for the project earlier (e.g. in the user interface), it returns an error. Use Update Stacking Rules endpoint to change the rules. 📘 Stacking Rules Documentation Read [the Stacking Rules article](https://support.voucherify.io/article/604-stacking-rules) to learn how they work.
363
+ # @param project_id [String] Provide the unique identifier of the project.
364
+ # @param [Hash] opts the optional parameters
365
+ # @option opts [ManagementProjectsStackingRulesCreateRequestBody] :management_projects_stacking_rules_create_request_body Defines the stacking rule parameters.
366
+ # @return [Array<(ManagementProjectsStackingRulesCreateResponseBody, Integer, Hash)>] ManagementProjectsStackingRulesCreateResponseBody data, response status code and response headers
367
+ private def create_stacking_rules_with_http_info(project_id, opts = {})
368
+ if @api_client.config.debugging
369
+ @api_client.config.logger.debug 'Calling API: ManagementApi.create_stacking_rules ...'
370
+ end
371
+ # resource path
372
+ local_var_path = '/management/v1/projects/{projectId}/stacking-rules'.sub('{' + 'projectId' + '}', CGI.escape(project_id.to_s))
373
+
374
+ # query parameters
375
+ query_params = opts[:query_params] || {}
376
+
377
+ # header parameters
378
+ header_params = opts[:header_params] || {}
379
+ # HTTP header 'Accept' (if needed)
380
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
381
+ # HTTP header 'Content-Type'
382
+ content_type = @api_client.select_header_content_type(['application/json'])
383
+ if !content_type.nil?
384
+ header_params['Content-Type'] = content_type
385
+ end
386
+
387
+ # form parameters
388
+ form_params = opts[:form_params] || {}
389
+
390
+ # http body (model)
391
+ post_body = opts[:debug_body] || @api_client.object_to_http_body(opts[:'management_projects_stacking_rules_create_request_body'])
392
+
393
+ # return_type
394
+ return_type = opts[:debug_return_type] || 'ManagementProjectsStackingRulesCreateResponseBody'
395
+
396
+ # auth_names
397
+ auth_names = opts[:debug_auth_names] || ['X-Management-Token', 'X-Management-Id']
398
+
399
+ new_options = opts.merge(
400
+ :operation => :"ManagementApi.create_stacking_rules",
401
+ :header_params => header_params,
402
+ :query_params => query_params,
403
+ :form_params => form_params,
404
+ :body => post_body,
405
+ :auth_names => auth_names,
406
+ :return_type => return_type
407
+ )
408
+
409
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
410
+ if @api_client.config.debugging
411
+ @api_client.config.logger.debug "API called: ManagementApi#create_stacking_rules\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
412
+ end
413
+ return data, status_code, headers
414
+ end
415
+
416
+ # Create Webhook
417
+ # Creates a new webhook configuration. 📘 Webhook Documentation Read Webhooks v2024-01-01 article to learn how webhooks work in Voucherify.
418
+ # @param project_id [String] Provide the unique identifier of the project.
419
+ # @param [Hash] opts the optional parameters
420
+ # @option opts [ManagementProjectsWebhooksCreateRequestBody] :management_projects_webhooks_create_request_body Defines a webhook configuration.
421
+ # @return [ManagementProjectsWebhooksCreateResponseBody]
422
+ def create_webhook(project_id, opts = {})
423
+ data, _status_code, _headers = create_webhook_with_http_info(project_id, opts)
424
+ data
425
+ end
426
+
427
+ # Create Webhook
428
+ # Creates a new webhook configuration. 📘 Webhook Documentation Read Webhooks v2024-01-01 article to learn how webhooks work in Voucherify.
429
+ # @param project_id [String] Provide the unique identifier of the project.
430
+ # @param [Hash] opts the optional parameters
431
+ # @option opts [ManagementProjectsWebhooksCreateRequestBody] :management_projects_webhooks_create_request_body Defines a webhook configuration.
432
+ # @return [Array<(ManagementProjectsWebhooksCreateResponseBody, Integer, Hash)>] ManagementProjectsWebhooksCreateResponseBody data, response status code and response headers
433
+ private def create_webhook_with_http_info(project_id, opts = {})
434
+ if @api_client.config.debugging
435
+ @api_client.config.logger.debug 'Calling API: ManagementApi.create_webhook ...'
436
+ end
437
+ # resource path
438
+ local_var_path = '/management/v1/projects/{projectId}/webhooks'.sub('{' + 'projectId' + '}', CGI.escape(project_id.to_s))
439
+
440
+ # query parameters
441
+ query_params = opts[:query_params] || {}
442
+
443
+ # header parameters
444
+ header_params = opts[:header_params] || {}
445
+ # HTTP header 'Accept' (if needed)
446
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
447
+ # HTTP header 'Content-Type'
448
+ content_type = @api_client.select_header_content_type(['application/json'])
449
+ if !content_type.nil?
450
+ header_params['Content-Type'] = content_type
451
+ end
452
+
453
+ # form parameters
454
+ form_params = opts[:form_params] || {}
455
+
456
+ # http body (model)
457
+ post_body = opts[:debug_body] || @api_client.object_to_http_body(opts[:'management_projects_webhooks_create_request_body'])
458
+
459
+ # return_type
460
+ return_type = opts[:debug_return_type] || 'ManagementProjectsWebhooksCreateResponseBody'
461
+
462
+ # auth_names
463
+ auth_names = opts[:debug_auth_names] || ['X-Management-Token', 'X-Management-Id']
464
+
465
+ new_options = opts.merge(
466
+ :operation => :"ManagementApi.create_webhook",
467
+ :header_params => header_params,
468
+ :query_params => query_params,
469
+ :form_params => form_params,
470
+ :body => post_body,
471
+ :auth_names => auth_names,
472
+ :return_type => return_type
473
+ )
474
+
475
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
476
+ if @api_client.config.debugging
477
+ @api_client.config.logger.debug "API called: ManagementApi#create_webhook\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
478
+ end
479
+ return data, status_code, headers
480
+ end
481
+
482
+ # Delete Brand
483
+ # Deletes permanently a brand configuration.
484
+ # @param project_id [String] Provide the unique identifier of the project.
485
+ # @param branding_id [String] Provide the unique identifier of the brand configuration.
486
+ # @param [Hash] opts the optional parameters
487
+ # @return [nil]
488
+ def delete_brand(project_id, branding_id, opts = {})
489
+ delete_brand_with_http_info(project_id, branding_id, opts)
490
+ nil
491
+ end
492
+
493
+ # Delete Brand
494
+ # Deletes permanently a brand configuration.
495
+ # @param project_id [String] Provide the unique identifier of the project.
496
+ # @param branding_id [String] Provide the unique identifier of the brand configuration.
497
+ # @param [Hash] opts the optional parameters
498
+ # @return [Array<(nil, Integer, Hash)>] nil, response status code and response headers
499
+ private def delete_brand_with_http_info(project_id, branding_id, opts = {})
500
+ if @api_client.config.debugging
501
+ @api_client.config.logger.debug 'Calling API: ManagementApi.delete_brand ...'
502
+ end
503
+ # resource path
504
+ local_var_path = '/management/v1/projects/{projectId}/branding/{brandingId}'.sub('{' + 'projectId' + '}', CGI.escape(project_id.to_s)).sub('{' + 'brandingId' + '}', CGI.escape(branding_id.to_s))
505
+
506
+ # query parameters
507
+ query_params = opts[:query_params] || {}
508
+
509
+ # header parameters
510
+ header_params = opts[:header_params] || {}
511
+
512
+ # form parameters
513
+ form_params = opts[:form_params] || {}
514
+
515
+ # http body (model)
516
+ post_body = opts[:debug_body]
517
+
518
+ # return_type
519
+ return_type = opts[:debug_return_type]
520
+
521
+ # auth_names
522
+ auth_names = opts[:debug_auth_names] || ['X-Management-Token', 'X-Management-Id']
523
+
524
+ new_options = opts.merge(
525
+ :operation => :"ManagementApi.delete_brand",
526
+ :header_params => header_params,
527
+ :query_params => query_params,
528
+ :form_params => form_params,
529
+ :body => post_body,
530
+ :auth_names => auth_names,
531
+ :return_type => return_type
532
+ )
533
+
534
+ data, status_code, headers = @api_client.call_api(:DELETE, local_var_path, new_options)
535
+ if @api_client.config.debugging
536
+ @api_client.config.logger.debug "API called: ManagementApi#delete_brand\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
537
+ end
538
+ return data, status_code, headers
539
+ end
540
+
541
+ # Delete Custom Event Schema
542
+ # Deletes permanently the custom event schema with its custom properties (metadata). 📘 Custom Event Documentation Read [Custom Events](https://support.voucherify.io/article/111-custom-events) article to learn how custom events work in Voucherify. Read also the details about the Track Custom Event endpoint and the Custom Event Object.
543
+ # @param project_id [String] Provide the unique identifier of the project.
544
+ # @param custom_event_schema_id [String] Provide the unique identifier of the custom event schema.
545
+ # @param [Hash] opts the optional parameters
546
+ # @return [nil]
547
+ def delete_custom_event_schema(project_id, custom_event_schema_id, opts = {})
548
+ delete_custom_event_schema_with_http_info(project_id, custom_event_schema_id, opts)
549
+ nil
550
+ end
551
+
552
+ # Delete Custom Event Schema
553
+ # Deletes permanently the custom event schema with its custom properties (metadata). 📘 Custom Event Documentation Read [Custom Events](https://support.voucherify.io/article/111-custom-events) article to learn how custom events work in Voucherify. Read also the details about the Track Custom Event endpoint and the Custom Event Object.
554
+ # @param project_id [String] Provide the unique identifier of the project.
555
+ # @param custom_event_schema_id [String] Provide the unique identifier of the custom event schema.
556
+ # @param [Hash] opts the optional parameters
557
+ # @return [Array<(nil, Integer, Hash)>] nil, response status code and response headers
558
+ private def delete_custom_event_schema_with_http_info(project_id, custom_event_schema_id, opts = {})
559
+ if @api_client.config.debugging
560
+ @api_client.config.logger.debug 'Calling API: ManagementApi.delete_custom_event_schema ...'
561
+ end
562
+ # resource path
563
+ local_var_path = '/management/v1/projects/{projectId}/custom-event-schemas/{customEventSchemaId}'.sub('{' + 'projectId' + '}', CGI.escape(project_id.to_s)).sub('{' + 'customEventSchemaId' + '}', CGI.escape(custom_event_schema_id.to_s))
564
+
565
+ # query parameters
566
+ query_params = opts[:query_params] || {}
567
+
568
+ # header parameters
569
+ header_params = opts[:header_params] || {}
570
+
571
+ # form parameters
572
+ form_params = opts[:form_params] || {}
573
+
574
+ # http body (model)
575
+ post_body = opts[:debug_body]
576
+
577
+ # return_type
578
+ return_type = opts[:debug_return_type]
579
+
580
+ # auth_names
581
+ auth_names = opts[:debug_auth_names] || ['X-Management-Token', 'X-Management-Id']
582
+
583
+ new_options = opts.merge(
584
+ :operation => :"ManagementApi.delete_custom_event_schema",
585
+ :header_params => header_params,
586
+ :query_params => query_params,
587
+ :form_params => form_params,
588
+ :body => post_body,
589
+ :auth_names => auth_names,
590
+ :return_type => return_type
591
+ )
592
+
593
+ data, status_code, headers = @api_client.call_api(:DELETE, local_var_path, new_options)
594
+ if @api_client.config.debugging
595
+ @api_client.config.logger.debug "API called: ManagementApi#delete_custom_event_schema\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
596
+ end
597
+ return data, status_code, headers
598
+ end
599
+
600
+ # Delete Metadata Schema
601
+ # Deletes permanently the metadata schema. In standard metadata schemas, this endpoint removes permanently all definitions. The standard metadata schemas are: - Campaign - Voucher - Publication - Redemption - Product - Customer - Order - Order line item - Loyalty Tier - Promotion Tier - Earning rule - Reward If you want to delete only one definition, use the Update Metadata Schema endpoint. In the request, provide the deleted: true pair in the definition object. This definition will be moved to Removed definitions. If you want to create a new standard metadata schema, use the Create Metadata Schema endpoint. 🚧 Metadata Purging This endpoint deletes permanently the metadata schemas only. However, it does not purge the metadata from associated entities, so the metadata added to those entities will remain. If you want to purge metadata from the entities: 1. Remove all the definitions you want to purge. You can do this either in Voucherify Project Settings > Metadata Schema tab or with the Update Metadata Schema endpoint. 2. In Voucherify Project Settings > Metadata Schema tab, go to the relevant metadata schema. 3. In Removed definitions, click the bin button next to the definitions whose metadata you want to purge from entities. Note: - This is an asynchronous action. You will be notified when it has been completed. - You cannot purge metadata for the Redemption and Publication schemas. 4. Use the Delete Metadata Schema request to delete the metadata schema from Voucherify. 📘 Metadata Documentation Read the Getting Started with Metadata articles to learn how metadata work in Voucherify.
602
+ # @param project_id [String] Provide the unique identifier of the project.
603
+ # @param metadata_schema_id [String] Provide the unique identifier of the metadata schema.
604
+ # @param [Hash] opts the optional parameters
605
+ # @return [nil]
606
+ def delete_metadata_schema(project_id, metadata_schema_id, opts = {})
607
+ delete_metadata_schema_with_http_info(project_id, metadata_schema_id, opts)
608
+ nil
609
+ end
610
+
611
+ # Delete Metadata Schema
612
+ # Deletes permanently the metadata schema. In standard metadata schemas, this endpoint removes permanently all definitions. The standard metadata schemas are: - Campaign - Voucher - Publication - Redemption - Product - Customer - Order - Order line item - Loyalty Tier - Promotion Tier - Earning rule - Reward If you want to delete only one definition, use the Update Metadata Schema endpoint. In the request, provide the deleted: true pair in the definition object. This definition will be moved to Removed definitions. If you want to create a new standard metadata schema, use the Create Metadata Schema endpoint. 🚧 Metadata Purging This endpoint deletes permanently the metadata schemas only. However, it does not purge the metadata from associated entities, so the metadata added to those entities will remain. If you want to purge metadata from the entities: 1. Remove all the definitions you want to purge. You can do this either in Voucherify Project Settings &gt; Metadata Schema tab or with the Update Metadata Schema endpoint. 2. In Voucherify Project Settings &gt; Metadata Schema tab, go to the relevant metadata schema. 3. In Removed definitions, click the bin button next to the definitions whose metadata you want to purge from entities. Note: - This is an asynchronous action. You will be notified when it has been completed. - You cannot purge metadata for the Redemption and Publication schemas. 4. Use the Delete Metadata Schema request to delete the metadata schema from Voucherify. 📘 Metadata Documentation Read the Getting Started with Metadata articles to learn how metadata work in Voucherify.
613
+ # @param project_id [String] Provide the unique identifier of the project.
614
+ # @param metadata_schema_id [String] Provide the unique identifier of the metadata schema.
615
+ # @param [Hash] opts the optional parameters
616
+ # @return [Array<(nil, Integer, Hash)>] nil, response status code and response headers
617
+ private def delete_metadata_schema_with_http_info(project_id, metadata_schema_id, opts = {})
618
+ if @api_client.config.debugging
619
+ @api_client.config.logger.debug 'Calling API: ManagementApi.delete_metadata_schema ...'
620
+ end
621
+ # resource path
622
+ local_var_path = '/management/v1/projects/{projectId}/metadata-schemas/{metadataSchemaId}'.sub('{' + 'projectId' + '}', CGI.escape(project_id.to_s)).sub('{' + 'metadataSchemaId' + '}', CGI.escape(metadata_schema_id.to_s))
623
+
624
+ # query parameters
625
+ query_params = opts[:query_params] || {}
626
+
627
+ # header parameters
628
+ header_params = opts[:header_params] || {}
629
+
630
+ # form parameters
631
+ form_params = opts[:form_params] || {}
632
+
633
+ # http body (model)
634
+ post_body = opts[:debug_body]
635
+
636
+ # return_type
637
+ return_type = opts[:debug_return_type]
638
+
639
+ # auth_names
640
+ auth_names = opts[:debug_auth_names] || ['X-Management-Token', 'X-Management-Id']
641
+
642
+ new_options = opts.merge(
643
+ :operation => :"ManagementApi.delete_metadata_schema",
644
+ :header_params => header_params,
645
+ :query_params => query_params,
646
+ :form_params => form_params,
647
+ :body => post_body,
648
+ :auth_names => auth_names,
649
+ :return_type => return_type
650
+ )
651
+
652
+ data, status_code, headers = @api_client.call_api(:DELETE, local_var_path, new_options)
653
+ if @api_client.config.debugging
654
+ @api_client.config.logger.debug "API called: ManagementApi#delete_metadata_schema\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
655
+ end
656
+ return data, status_code, headers
657
+ end
658
+
659
+ # Delete Project
660
+ # Deletes an existing project. The users currently using the deleted project will be automatically logged out. 🚧 Sandbox Project The sandbox project cannot be deleted.
661
+ # @param project_id [String] Provide the unique identifier of the project.
662
+ # @param [Hash] opts the optional parameters
663
+ # @return [nil]
664
+ def delete_project(project_id, opts = {})
665
+ delete_project_with_http_info(project_id, opts)
666
+ nil
667
+ end
668
+
669
+ # Delete Project
670
+ # Deletes an existing project. The users currently using the deleted project will be automatically logged out. 🚧 Sandbox Project The sandbox project cannot be deleted.
671
+ # @param project_id [String] Provide the unique identifier of the project.
672
+ # @param [Hash] opts the optional parameters
673
+ # @return [Array<(nil, Integer, Hash)>] nil, response status code and response headers
674
+ private def delete_project_with_http_info(project_id, opts = {})
675
+ if @api_client.config.debugging
676
+ @api_client.config.logger.debug 'Calling API: ManagementApi.delete_project ...'
677
+ end
678
+ # resource path
679
+ local_var_path = '/management/v1/projects/{projectId}'.sub('{' + 'projectId' + '}', CGI.escape(project_id.to_s))
680
+
681
+ # query parameters
682
+ query_params = opts[:query_params] || {}
683
+
684
+ # header parameters
685
+ header_params = opts[:header_params] || {}
686
+
687
+ # form parameters
688
+ form_params = opts[:form_params] || {}
689
+
690
+ # http body (model)
691
+ post_body = opts[:debug_body]
692
+
693
+ # return_type
694
+ return_type = opts[:debug_return_type]
695
+
696
+ # auth_names
697
+ auth_names = opts[:debug_auth_names] || ['X-Management-Token', 'X-Management-Id']
698
+
699
+ new_options = opts.merge(
700
+ :operation => :"ManagementApi.delete_project",
701
+ :header_params => header_params,
702
+ :query_params => query_params,
703
+ :form_params => form_params,
704
+ :body => post_body,
705
+ :auth_names => auth_names,
706
+ :return_type => return_type
707
+ )
708
+
709
+ data, status_code, headers = @api_client.call_api(:DELETE, local_var_path, new_options)
710
+ if @api_client.config.debugging
711
+ @api_client.config.logger.debug "API called: ManagementApi#delete_project\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
712
+ end
713
+ return data, status_code, headers
714
+ end
715
+
716
+ # Delete Stacking Rules
717
+ # Deletes permanently the current settings for the stacking rules. The stacking rules are restored to default values. 📘 Stacking Rules Documentation Read [the Stacking Rules article](https://support.voucherify.io/article/604-stacking-rules) to learn how they work.
718
+ # @param project_id [String] Provide the unique identifier of the project.
719
+ # @param stacking_rules_id [String] Provide the unique identifier of the stacking rules.
720
+ # @param [Hash] opts the optional parameters
721
+ # @return [nil]
722
+ def delete_stacking_rules(project_id, stacking_rules_id, opts = {})
723
+ delete_stacking_rules_with_http_info(project_id, stacking_rules_id, opts)
724
+ nil
725
+ end
726
+
727
+ # Delete Stacking Rules
728
+ # Deletes permanently the current settings for the stacking rules. The stacking rules are restored to default values. 📘 Stacking Rules Documentation Read [the Stacking Rules article](https://support.voucherify.io/article/604-stacking-rules) to learn how they work.
729
+ # @param project_id [String] Provide the unique identifier of the project.
730
+ # @param stacking_rules_id [String] Provide the unique identifier of the stacking rules.
731
+ # @param [Hash] opts the optional parameters
732
+ # @return [Array<(nil, Integer, Hash)>] nil, response status code and response headers
733
+ private def delete_stacking_rules_with_http_info(project_id, stacking_rules_id, opts = {})
734
+ if @api_client.config.debugging
735
+ @api_client.config.logger.debug 'Calling API: ManagementApi.delete_stacking_rules ...'
736
+ end
737
+ # resource path
738
+ local_var_path = '/management/v1/projects/{projectId}/stacking-rules/{stackingRulesId}'.sub('{' + 'projectId' + '}', CGI.escape(project_id.to_s)).sub('{' + 'stackingRulesId' + '}', CGI.escape(stacking_rules_id.to_s))
739
+
740
+ # query parameters
741
+ query_params = opts[:query_params] || {}
742
+
743
+ # header parameters
744
+ header_params = opts[:header_params] || {}
745
+
746
+ # form parameters
747
+ form_params = opts[:form_params] || {}
748
+
749
+ # http body (model)
750
+ post_body = opts[:debug_body]
751
+
752
+ # return_type
753
+ return_type = opts[:debug_return_type]
754
+
755
+ # auth_names
756
+ auth_names = opts[:debug_auth_names] || ['X-Management-Token', 'X-Management-Id']
757
+
758
+ new_options = opts.merge(
759
+ :operation => :"ManagementApi.delete_stacking_rules",
760
+ :header_params => header_params,
761
+ :query_params => query_params,
762
+ :form_params => form_params,
763
+ :body => post_body,
764
+ :auth_names => auth_names,
765
+ :return_type => return_type
766
+ )
767
+
768
+ data, status_code, headers = @api_client.call_api(:DELETE, local_var_path, new_options)
769
+ if @api_client.config.debugging
770
+ @api_client.config.logger.debug "API called: ManagementApi#delete_stacking_rules\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
771
+ end
772
+ return data, status_code, headers
773
+ end
774
+
775
+ # Delete Webhook
776
+ # Deletes a webhook configuration. 📘 Webhook Documentation Read Webhooks v2024-01-1 article to learn how webhooks work in Voucherify.
777
+ # @param project_id [String] Provide the unique identifier of the project.
778
+ # @param webhook_id [String] Provide the unique identifier of the webhook configuration.
779
+ # @param [Hash] opts the optional parameters
780
+ # @return [nil]
781
+ def delete_webhook(project_id, webhook_id, opts = {})
782
+ delete_webhook_with_http_info(project_id, webhook_id, opts)
783
+ nil
784
+ end
785
+
786
+ # Delete Webhook
787
+ # Deletes a webhook configuration. 📘 Webhook Documentation Read Webhooks v2024-01-1 article to learn how webhooks work in Voucherify.
788
+ # @param project_id [String] Provide the unique identifier of the project.
789
+ # @param webhook_id [String] Provide the unique identifier of the webhook configuration.
790
+ # @param [Hash] opts the optional parameters
791
+ # @return [Array<(nil, Integer, Hash)>] nil, response status code and response headers
792
+ private def delete_webhook_with_http_info(project_id, webhook_id, opts = {})
793
+ if @api_client.config.debugging
794
+ @api_client.config.logger.debug 'Calling API: ManagementApi.delete_webhook ...'
795
+ end
796
+ # resource path
797
+ local_var_path = '/management/v1/projects/{projectId}/webhooks/{webhookId}'.sub('{' + 'projectId' + '}', CGI.escape(project_id.to_s)).sub('{' + 'webhookId' + '}', CGI.escape(webhook_id.to_s))
798
+
799
+ # query parameters
800
+ query_params = opts[:query_params] || {}
801
+
802
+ # header parameters
803
+ header_params = opts[:header_params] || {}
804
+
805
+ # form parameters
806
+ form_params = opts[:form_params] || {}
807
+
808
+ # http body (model)
809
+ post_body = opts[:debug_body]
810
+
811
+ # return_type
812
+ return_type = opts[:debug_return_type]
813
+
814
+ # auth_names
815
+ auth_names = opts[:debug_auth_names] || ['X-Management-Token', 'X-Management-Id']
816
+
817
+ new_options = opts.merge(
818
+ :operation => :"ManagementApi.delete_webhook",
819
+ :header_params => header_params,
820
+ :query_params => query_params,
821
+ :form_params => form_params,
822
+ :body => post_body,
823
+ :auth_names => auth_names,
824
+ :return_type => return_type
825
+ )
826
+
827
+ data, status_code, headers = @api_client.call_api(:DELETE, local_var_path, new_options)
828
+ if @api_client.config.debugging
829
+ @api_client.config.logger.debug "API called: ManagementApi#delete_webhook\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
830
+ end
831
+ return data, status_code, headers
832
+ end
833
+
834
+ # Get Brand
835
+ # Retrieves a brand configuration.
836
+ # @param project_id [String] Provide the unique identifier of the project.
837
+ # @param branding_id [String] Provide the unique identifier of the brand configuration.
838
+ # @param [Hash] opts the optional parameters
839
+ # @return [ManagementProjectsBrandingGetResponseBody]
840
+ def get_brand(project_id, branding_id, opts = {})
841
+ data, _status_code, _headers = get_brand_with_http_info(project_id, branding_id, opts)
842
+ data
843
+ end
844
+
845
+ # Get Brand
846
+ # Retrieves a brand configuration.
847
+ # @param project_id [String] Provide the unique identifier of the project.
848
+ # @param branding_id [String] Provide the unique identifier of the brand configuration.
849
+ # @param [Hash] opts the optional parameters
850
+ # @return [Array<(ManagementProjectsBrandingGetResponseBody, Integer, Hash)>] ManagementProjectsBrandingGetResponseBody data, response status code and response headers
851
+ private def get_brand_with_http_info(project_id, branding_id, opts = {})
852
+ if @api_client.config.debugging
853
+ @api_client.config.logger.debug 'Calling API: ManagementApi.get_brand ...'
854
+ end
855
+ # resource path
856
+ local_var_path = '/management/v1/projects/{projectId}/branding/{brandingId}'.sub('{' + 'projectId' + '}', CGI.escape(project_id.to_s)).sub('{' + 'brandingId' + '}', CGI.escape(branding_id.to_s))
857
+
858
+ # query parameters
859
+ query_params = opts[:query_params] || {}
860
+
861
+ # header parameters
862
+ header_params = opts[:header_params] || {}
863
+ # HTTP header 'Accept' (if needed)
864
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
865
+
866
+ # form parameters
867
+ form_params = opts[:form_params] || {}
868
+
869
+ # http body (model)
870
+ post_body = opts[:debug_body]
871
+
872
+ # return_type
873
+ return_type = opts[:debug_return_type] || 'ManagementProjectsBrandingGetResponseBody'
874
+
875
+ # auth_names
876
+ auth_names = opts[:debug_auth_names] || ['X-Management-Token', 'X-Management-Id']
877
+
878
+ new_options = opts.merge(
879
+ :operation => :"ManagementApi.get_brand",
880
+ :header_params => header_params,
881
+ :query_params => query_params,
882
+ :form_params => form_params,
883
+ :body => post_body,
884
+ :auth_names => auth_names,
885
+ :return_type => return_type
886
+ )
887
+
888
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
889
+ if @api_client.config.debugging
890
+ @api_client.config.logger.debug "API called: ManagementApi#get_brand\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
891
+ end
892
+ return data, status_code, headers
893
+ end
894
+
895
+ # Get Custom Event Schema
896
+ # Retrieves a custom event schema. 📘 Custom Event Documentation Read [Custom Events](https://support.voucherify.io/article/111-custom-events) article to learn how custom events work in Voucherify. Read also the details about the Track Custom Event endpoint and the Custom Event Object.
897
+ # @param project_id [String] Provide the unique identifier of the project.
898
+ # @param custom_event_schema_id [String] Provide the unique identifier of the custom event schema.
899
+ # @param [Hash] opts the optional parameters
900
+ # @return [ManagementProjectsCustomEventSchemasGetResponseBody]
901
+ def get_custom_event_schema(project_id, custom_event_schema_id, opts = {})
902
+ data, _status_code, _headers = get_custom_event_schema_with_http_info(project_id, custom_event_schema_id, opts)
903
+ data
904
+ end
905
+
906
+ # Get Custom Event Schema
907
+ # Retrieves a custom event schema. 📘 Custom Event Documentation Read [Custom Events](https://support.voucherify.io/article/111-custom-events) article to learn how custom events work in Voucherify. Read also the details about the Track Custom Event endpoint and the Custom Event Object.
908
+ # @param project_id [String] Provide the unique identifier of the project.
909
+ # @param custom_event_schema_id [String] Provide the unique identifier of the custom event schema.
910
+ # @param [Hash] opts the optional parameters
911
+ # @return [Array<(ManagementProjectsCustomEventSchemasGetResponseBody, Integer, Hash)>] ManagementProjectsCustomEventSchemasGetResponseBody data, response status code and response headers
912
+ private def get_custom_event_schema_with_http_info(project_id, custom_event_schema_id, opts = {})
913
+ if @api_client.config.debugging
914
+ @api_client.config.logger.debug 'Calling API: ManagementApi.get_custom_event_schema ...'
915
+ end
916
+ # resource path
917
+ local_var_path = '/management/v1/projects/{projectId}/custom-event-schemas/{customEventSchemaId}'.sub('{' + 'projectId' + '}', CGI.escape(project_id.to_s)).sub('{' + 'customEventSchemaId' + '}', CGI.escape(custom_event_schema_id.to_s))
918
+
919
+ # query parameters
920
+ query_params = opts[:query_params] || {}
921
+
922
+ # header parameters
923
+ header_params = opts[:header_params] || {}
924
+ # HTTP header 'Accept' (if needed)
925
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
926
+
927
+ # form parameters
928
+ form_params = opts[:form_params] || {}
929
+
930
+ # http body (model)
931
+ post_body = opts[:debug_body]
932
+
933
+ # return_type
934
+ return_type = opts[:debug_return_type] || 'ManagementProjectsCustomEventSchemasGetResponseBody'
935
+
936
+ # auth_names
937
+ auth_names = opts[:debug_auth_names] || ['X-Management-Token', 'X-Management-Id']
938
+
939
+ new_options = opts.merge(
940
+ :operation => :"ManagementApi.get_custom_event_schema",
941
+ :header_params => header_params,
942
+ :query_params => query_params,
943
+ :form_params => form_params,
944
+ :body => post_body,
945
+ :auth_names => auth_names,
946
+ :return_type => return_type
947
+ )
948
+
949
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
950
+ if @api_client.config.debugging
951
+ @api_client.config.logger.debug "API called: ManagementApi#get_custom_event_schema\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
952
+ end
953
+ return data, status_code, headers
954
+ end
955
+
956
+ # Get Metadata Schema
957
+ # Retrieves a metadata schema. 📘 Metadata Documentation Read the Getting Started with Metadata articles to learn how metadata work in Voucherify.
958
+ # @param project_id [String] Provide the unique identifier of the project.
959
+ # @param metadata_schema_id [String] Provide the unique identifier of the metadata schema.
960
+ # @param [Hash] opts the optional parameters
961
+ # @return [ManagementProjectsMetadataSchemasGetResponseBody]
962
+ def get_metadata_schema1(project_id, metadata_schema_id, opts = {})
963
+ data, _status_code, _headers = get_metadata_schema1_with_http_info(project_id, metadata_schema_id, opts)
964
+ data
965
+ end
966
+
967
+ # Get Metadata Schema
968
+ # Retrieves a metadata schema. 📘 Metadata Documentation Read the Getting Started with Metadata articles to learn how metadata work in Voucherify.
969
+ # @param project_id [String] Provide the unique identifier of the project.
970
+ # @param metadata_schema_id [String] Provide the unique identifier of the metadata schema.
971
+ # @param [Hash] opts the optional parameters
972
+ # @return [Array<(ManagementProjectsMetadataSchemasGetResponseBody, Integer, Hash)>] ManagementProjectsMetadataSchemasGetResponseBody data, response status code and response headers
973
+ private def get_metadata_schema1_with_http_info(project_id, metadata_schema_id, opts = {})
974
+ if @api_client.config.debugging
975
+ @api_client.config.logger.debug 'Calling API: ManagementApi.get_metadata_schema1 ...'
976
+ end
977
+ # resource path
978
+ local_var_path = '/management/v1/projects/{projectId}/metadata-schemas/{metadataSchemaId}'.sub('{' + 'projectId' + '}', CGI.escape(project_id.to_s)).sub('{' + 'metadataSchemaId' + '}', CGI.escape(metadata_schema_id.to_s))
979
+
980
+ # query parameters
981
+ query_params = opts[:query_params] || {}
982
+
983
+ # header parameters
984
+ header_params = opts[:header_params] || {}
985
+ # HTTP header 'Accept' (if needed)
986
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
987
+
988
+ # form parameters
989
+ form_params = opts[:form_params] || {}
990
+
991
+ # http body (model)
992
+ post_body = opts[:debug_body]
993
+
994
+ # return_type
995
+ return_type = opts[:debug_return_type] || 'ManagementProjectsMetadataSchemasGetResponseBody'
996
+
997
+ # auth_names
998
+ auth_names = opts[:debug_auth_names] || ['X-Management-Token', 'X-Management-Id']
999
+
1000
+ new_options = opts.merge(
1001
+ :operation => :"ManagementApi.get_metadata_schema1",
1002
+ :header_params => header_params,
1003
+ :query_params => query_params,
1004
+ :form_params => form_params,
1005
+ :body => post_body,
1006
+ :auth_names => auth_names,
1007
+ :return_type => return_type
1008
+ )
1009
+
1010
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
1011
+ if @api_client.config.debugging
1012
+ @api_client.config.logger.debug "API called: ManagementApi#get_metadata_schema1\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
1013
+ end
1014
+ return data, status_code, headers
1015
+ end
1016
+
1017
+ # Get Project
1018
+ # Retrieves an existing project.
1019
+ # @param project_id [String] Provide the unique identifier of the project.
1020
+ # @param [Hash] opts the optional parameters
1021
+ # @return [ManagementProjectsGetResponseBody]
1022
+ def get_project(project_id, opts = {})
1023
+ data, _status_code, _headers = get_project_with_http_info(project_id, opts)
1024
+ data
1025
+ end
1026
+
1027
+ # Get Project
1028
+ # Retrieves an existing project.
1029
+ # @param project_id [String] Provide the unique identifier of the project.
1030
+ # @param [Hash] opts the optional parameters
1031
+ # @return [Array<(ManagementProjectsGetResponseBody, Integer, Hash)>] ManagementProjectsGetResponseBody data, response status code and response headers
1032
+ private def get_project_with_http_info(project_id, opts = {})
1033
+ if @api_client.config.debugging
1034
+ @api_client.config.logger.debug 'Calling API: ManagementApi.get_project ...'
1035
+ end
1036
+ # resource path
1037
+ local_var_path = '/management/v1/projects/{projectId}'.sub('{' + 'projectId' + '}', CGI.escape(project_id.to_s))
1038
+
1039
+ # query parameters
1040
+ query_params = opts[:query_params] || {}
1041
+
1042
+ # header parameters
1043
+ header_params = opts[:header_params] || {}
1044
+ # HTTP header 'Accept' (if needed)
1045
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
1046
+
1047
+ # form parameters
1048
+ form_params = opts[:form_params] || {}
1049
+
1050
+ # http body (model)
1051
+ post_body = opts[:debug_body]
1052
+
1053
+ # return_type
1054
+ return_type = opts[:debug_return_type] || 'ManagementProjectsGetResponseBody'
1055
+
1056
+ # auth_names
1057
+ auth_names = opts[:debug_auth_names] || ['X-Management-Token', 'X-Management-Id']
1058
+
1059
+ new_options = opts.merge(
1060
+ :operation => :"ManagementApi.get_project",
1061
+ :header_params => header_params,
1062
+ :query_params => query_params,
1063
+ :form_params => form_params,
1064
+ :body => post_body,
1065
+ :auth_names => auth_names,
1066
+ :return_type => return_type
1067
+ )
1068
+
1069
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
1070
+ if @api_client.config.debugging
1071
+ @api_client.config.logger.debug "API called: ManagementApi#get_project\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
1072
+ end
1073
+ return data, status_code, headers
1074
+ end
1075
+
1076
+ # Get Stacking Rules
1077
+ # Retrieves the stacking rules for the project. 📘 Stacking Rules Documentation Read [the Stacking Rules article](https://support.voucherify.io/article/604-stacking-rules) to learn how they work.
1078
+ # @param project_id [String] Provide the unique identifier of the project.
1079
+ # @param stacking_rules_id [String] Provide the unique identifier of the stacking rules.
1080
+ # @param [Hash] opts the optional parameters
1081
+ # @return [ManagementProjectsStackingRulesGetResponseBody]
1082
+ def get_stacking_rules(project_id, stacking_rules_id, opts = {})
1083
+ data, _status_code, _headers = get_stacking_rules_with_http_info(project_id, stacking_rules_id, opts)
1084
+ data
1085
+ end
1086
+
1087
+ # Get Stacking Rules
1088
+ # Retrieves the stacking rules for the project. 📘 Stacking Rules Documentation Read [the Stacking Rules article](https://support.voucherify.io/article/604-stacking-rules) to learn how they work.
1089
+ # @param project_id [String] Provide the unique identifier of the project.
1090
+ # @param stacking_rules_id [String] Provide the unique identifier of the stacking rules.
1091
+ # @param [Hash] opts the optional parameters
1092
+ # @return [Array<(ManagementProjectsStackingRulesGetResponseBody, Integer, Hash)>] ManagementProjectsStackingRulesGetResponseBody data, response status code and response headers
1093
+ private def get_stacking_rules_with_http_info(project_id, stacking_rules_id, opts = {})
1094
+ if @api_client.config.debugging
1095
+ @api_client.config.logger.debug 'Calling API: ManagementApi.get_stacking_rules ...'
1096
+ end
1097
+ # resource path
1098
+ local_var_path = '/management/v1/projects/{projectId}/stacking-rules/{stackingRulesId}'.sub('{' + 'projectId' + '}', CGI.escape(project_id.to_s)).sub('{' + 'stackingRulesId' + '}', CGI.escape(stacking_rules_id.to_s))
1099
+
1100
+ # query parameters
1101
+ query_params = opts[:query_params] || {}
1102
+
1103
+ # header parameters
1104
+ header_params = opts[:header_params] || {}
1105
+ # HTTP header 'Accept' (if needed)
1106
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
1107
+
1108
+ # form parameters
1109
+ form_params = opts[:form_params] || {}
1110
+
1111
+ # http body (model)
1112
+ post_body = opts[:debug_body]
1113
+
1114
+ # return_type
1115
+ return_type = opts[:debug_return_type] || 'ManagementProjectsStackingRulesGetResponseBody'
1116
+
1117
+ # auth_names
1118
+ auth_names = opts[:debug_auth_names] || ['X-Management-Token', 'X-Management-Id']
1119
+
1120
+ new_options = opts.merge(
1121
+ :operation => :"ManagementApi.get_stacking_rules",
1122
+ :header_params => header_params,
1123
+ :query_params => query_params,
1124
+ :form_params => form_params,
1125
+ :body => post_body,
1126
+ :auth_names => auth_names,
1127
+ :return_type => return_type
1128
+ )
1129
+
1130
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
1131
+ if @api_client.config.debugging
1132
+ @api_client.config.logger.debug "API called: ManagementApi#get_stacking_rules\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
1133
+ end
1134
+ return data, status_code, headers
1135
+ end
1136
+
1137
+ # Get User
1138
+ # Retrieves the project users details.
1139
+ # @param project_id [String] Provide the unique identifier of the project.
1140
+ # @param user_id [String] Provide the unique identifier of the user. Alternatively, provide the users login.
1141
+ # @param [Hash] opts the optional parameters
1142
+ # @return [ManagementProjectsUsersGetUserResponseBody]
1143
+ def get_user(project_id, user_id, opts = {})
1144
+ data, _status_code, _headers = get_user_with_http_info(project_id, user_id, opts)
1145
+ data
1146
+ end
1147
+
1148
+ # Get User
1149
+ # Retrieves the project users details.
1150
+ # @param project_id [String] Provide the unique identifier of the project.
1151
+ # @param user_id [String] Provide the unique identifier of the user. Alternatively, provide the users login.
1152
+ # @param [Hash] opts the optional parameters
1153
+ # @return [Array<(ManagementProjectsUsersGetUserResponseBody, Integer, Hash)>] ManagementProjectsUsersGetUserResponseBody data, response status code and response headers
1154
+ private def get_user_with_http_info(project_id, user_id, opts = {})
1155
+ if @api_client.config.debugging
1156
+ @api_client.config.logger.debug 'Calling API: ManagementApi.get_user ...'
1157
+ end
1158
+ # resource path
1159
+ local_var_path = '/management/v1/projects/{projectId}/users/{userId}'.sub('{' + 'projectId' + '}', CGI.escape(project_id.to_s)).sub('{' + 'userId' + '}', CGI.escape(user_id.to_s))
1160
+
1161
+ # query parameters
1162
+ query_params = opts[:query_params] || {}
1163
+
1164
+ # header parameters
1165
+ header_params = opts[:header_params] || {}
1166
+ # HTTP header 'Accept' (if needed)
1167
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
1168
+
1169
+ # form parameters
1170
+ form_params = opts[:form_params] || {}
1171
+
1172
+ # http body (model)
1173
+ post_body = opts[:debug_body]
1174
+
1175
+ # return_type
1176
+ return_type = opts[:debug_return_type] || 'ManagementProjectsUsersGetUserResponseBody'
1177
+
1178
+ # auth_names
1179
+ auth_names = opts[:debug_auth_names] || ['X-Management-Token', 'X-Management-Id']
1180
+
1181
+ new_options = opts.merge(
1182
+ :operation => :"ManagementApi.get_user",
1183
+ :header_params => header_params,
1184
+ :query_params => query_params,
1185
+ :form_params => form_params,
1186
+ :body => post_body,
1187
+ :auth_names => auth_names,
1188
+ :return_type => return_type
1189
+ )
1190
+
1191
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
1192
+ if @api_client.config.debugging
1193
+ @api_client.config.logger.debug "API called: ManagementApi#get_user\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
1194
+ end
1195
+ return data, status_code, headers
1196
+ end
1197
+
1198
+ # Get Webhook
1199
+ # Retrieves a webhook configuration. 📘 Webhook Documentation Read Webhooks v2024-01-1 article to learn how webhooks work in Voucherify.
1200
+ # @param project_id [String] Provide the unique identifier of the project.
1201
+ # @param webhook_id [String] Provide the unique identifier of the webhook configuration.
1202
+ # @param [Hash] opts the optional parameters
1203
+ # @return [ManagementProjectsWebhooksGetResponseBody]
1204
+ def get_webhook(project_id, webhook_id, opts = {})
1205
+ data, _status_code, _headers = get_webhook_with_http_info(project_id, webhook_id, opts)
1206
+ data
1207
+ end
1208
+
1209
+ # Get Webhook
1210
+ # Retrieves a webhook configuration. 📘 Webhook Documentation Read Webhooks v2024-01-1 article to learn how webhooks work in Voucherify.
1211
+ # @param project_id [String] Provide the unique identifier of the project.
1212
+ # @param webhook_id [String] Provide the unique identifier of the webhook configuration.
1213
+ # @param [Hash] opts the optional parameters
1214
+ # @return [Array<(ManagementProjectsWebhooksGetResponseBody, Integer, Hash)>] ManagementProjectsWebhooksGetResponseBody data, response status code and response headers
1215
+ private def get_webhook_with_http_info(project_id, webhook_id, opts = {})
1216
+ if @api_client.config.debugging
1217
+ @api_client.config.logger.debug 'Calling API: ManagementApi.get_webhook ...'
1218
+ end
1219
+ # resource path
1220
+ local_var_path = '/management/v1/projects/{projectId}/webhooks/{webhookId}'.sub('{' + 'projectId' + '}', CGI.escape(project_id.to_s)).sub('{' + 'webhookId' + '}', CGI.escape(webhook_id.to_s))
1221
+
1222
+ # query parameters
1223
+ query_params = opts[:query_params] || {}
1224
+
1225
+ # header parameters
1226
+ header_params = opts[:header_params] || {}
1227
+ # HTTP header 'Accept' (if needed)
1228
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
1229
+
1230
+ # form parameters
1231
+ form_params = opts[:form_params] || {}
1232
+
1233
+ # http body (model)
1234
+ post_body = opts[:debug_body]
1235
+
1236
+ # return_type
1237
+ return_type = opts[:debug_return_type] || 'ManagementProjectsWebhooksGetResponseBody'
1238
+
1239
+ # auth_names
1240
+ auth_names = opts[:debug_auth_names] || ['X-Management-Token', 'X-Management-Id']
1241
+
1242
+ new_options = opts.merge(
1243
+ :operation => :"ManagementApi.get_webhook",
1244
+ :header_params => header_params,
1245
+ :query_params => query_params,
1246
+ :form_params => form_params,
1247
+ :body => post_body,
1248
+ :auth_names => auth_names,
1249
+ :return_type => return_type
1250
+ )
1251
+
1252
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
1253
+ if @api_client.config.debugging
1254
+ @api_client.config.logger.debug "API called: ManagementApi#get_webhook\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
1255
+ end
1256
+ return data, status_code, headers
1257
+ end
1258
+
1259
+ # Invite a New User
1260
+ # Sends an invitation to an email address that has not been used yet as a Voucherify user login. You can specify the projects to which the invited user will be assigned and define their roles.
1261
+ # @param [Hash] opts the optional parameters
1262
+ # @option opts [ManagementProjectsUsersInviteCreateRequestBody] :management_projects_users_invite_create_request_body Defines the details of the invitation, the project, and roles to which the user will be assigned.
1263
+ # @return [nil]
1264
+ def invite_user(opts = {})
1265
+ invite_user_with_http_info(opts)
1266
+ nil
1267
+ end
1268
+
1269
+ # Invite a New User
1270
+ # Sends an invitation to an email address that has not been used yet as a Voucherify user login. You can specify the projects to which the invited user will be assigned and define their roles.
1271
+ # @param [Hash] opts the optional parameters
1272
+ # @option opts [ManagementProjectsUsersInviteCreateRequestBody] :management_projects_users_invite_create_request_body Defines the details of the invitation, the project, and roles to which the user will be assigned.
1273
+ # @return [Array<(nil, Integer, Hash)>] nil, response status code and response headers
1274
+ private def invite_user_with_http_info(opts = {})
1275
+ if @api_client.config.debugging
1276
+ @api_client.config.logger.debug 'Calling API: ManagementApi.invite_user ...'
1277
+ end
1278
+ # resource path
1279
+ local_var_path = '/management/v1/projects/users/invite'
1280
+
1281
+ # query parameters
1282
+ query_params = opts[:query_params] || {}
1283
+
1284
+ # header parameters
1285
+ header_params = opts[:header_params] || {}
1286
+ # HTTP header 'Content-Type'
1287
+ content_type = @api_client.select_header_content_type(['application/json'])
1288
+ if !content_type.nil?
1289
+ header_params['Content-Type'] = content_type
1290
+ end
1291
+
1292
+ # form parameters
1293
+ form_params = opts[:form_params] || {}
1294
+
1295
+ # http body (model)
1296
+ post_body = opts[:debug_body] || @api_client.object_to_http_body(opts[:'management_projects_users_invite_create_request_body'])
1297
+
1298
+ # return_type
1299
+ return_type = opts[:debug_return_type]
1300
+
1301
+ # auth_names
1302
+ auth_names = opts[:debug_auth_names] || ['X-Management-Token', 'X-Management-Id']
1303
+
1304
+ new_options = opts.merge(
1305
+ :operation => :"ManagementApi.invite_user",
1306
+ :header_params => header_params,
1307
+ :query_params => query_params,
1308
+ :form_params => form_params,
1309
+ :body => post_body,
1310
+ :auth_names => auth_names,
1311
+ :return_type => return_type
1312
+ )
1313
+
1314
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
1315
+ if @api_client.config.debugging
1316
+ @api_client.config.logger.debug "API called: ManagementApi#invite_user\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
1317
+ end
1318
+ return data, status_code, headers
1319
+ end
1320
+
1321
+ # List Brands
1322
+ # Lists all brand configurations. Because a project can have only one brand, it always returns a list with one item. This endpoint can be used to retrieve the brand configuration created with the Voucherify Dashboard and the ID.
1323
+ # @param project_id [String] Provide the unique identifier of the project.
1324
+ # @param [Hash] opts the optional parameters
1325
+ # @return [ManagementProjectsBrandingListResponseBody]
1326
+ def list_brands(project_id, opts = {})
1327
+ data, _status_code, _headers = list_brands_with_http_info(project_id, opts)
1328
+ data
1329
+ end
1330
+
1331
+ # List Brands
1332
+ # Lists all brand configurations. Because a project can have only one brand, it always returns a list with one item. This endpoint can be used to retrieve the brand configuration created with the Voucherify Dashboard and the ID.
1333
+ # @param project_id [String] Provide the unique identifier of the project.
1334
+ # @param [Hash] opts the optional parameters
1335
+ # @return [Array<(ManagementProjectsBrandingListResponseBody, Integer, Hash)>] ManagementProjectsBrandingListResponseBody data, response status code and response headers
1336
+ private def list_brands_with_http_info(project_id, opts = {})
1337
+ if @api_client.config.debugging
1338
+ @api_client.config.logger.debug 'Calling API: ManagementApi.list_brands ...'
1339
+ end
1340
+ # resource path
1341
+ local_var_path = '/management/v1/projects/{projectId}/branding'.sub('{' + 'projectId' + '}', CGI.escape(project_id.to_s))
1342
+
1343
+ # query parameters
1344
+ query_params = opts[:query_params] || {}
1345
+
1346
+ # header parameters
1347
+ header_params = opts[:header_params] || {}
1348
+ # HTTP header 'Accept' (if needed)
1349
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
1350
+
1351
+ # form parameters
1352
+ form_params = opts[:form_params] || {}
1353
+
1354
+ # http body (model)
1355
+ post_body = opts[:debug_body]
1356
+
1357
+ # return_type
1358
+ return_type = opts[:debug_return_type] || 'ManagementProjectsBrandingListResponseBody'
1359
+
1360
+ # auth_names
1361
+ auth_names = opts[:debug_auth_names] || ['X-Management-Token', 'X-Management-Id']
1362
+
1363
+ new_options = opts.merge(
1364
+ :operation => :"ManagementApi.list_brands",
1365
+ :header_params => header_params,
1366
+ :query_params => query_params,
1367
+ :form_params => form_params,
1368
+ :body => post_body,
1369
+ :auth_names => auth_names,
1370
+ :return_type => return_type
1371
+ )
1372
+
1373
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
1374
+ if @api_client.config.debugging
1375
+ @api_client.config.logger.debug "API called: ManagementApi#list_brands\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
1376
+ end
1377
+ return data, status_code, headers
1378
+ end
1379
+
1380
+ # List Custom Event Schemas
1381
+ # Lists all custom event schemas available in the project. 📘 Custom Event Documentation Read [Custom Events](https://support.voucherify.io/article/111-custom-events) article to learn how custom events work in Voucherify. Read also the details about the Track Custom Event endpoint and the Custom Event Object.
1382
+ # @param project_id [String] Provide the unique identifier of the project.
1383
+ # @param [Hash] opts the optional parameters
1384
+ # @return [ManagementProjectsCustomEventSchemasListResponseBody]
1385
+ def list_custom_event_schemas(project_id, opts = {})
1386
+ data, _status_code, _headers = list_custom_event_schemas_with_http_info(project_id, opts)
1387
+ data
1388
+ end
1389
+
1390
+ # List Custom Event Schemas
1391
+ # Lists all custom event schemas available in the project. 📘 Custom Event Documentation Read [Custom Events](https://support.voucherify.io/article/111-custom-events) article to learn how custom events work in Voucherify. Read also the details about the Track Custom Event endpoint and the Custom Event Object.
1392
+ # @param project_id [String] Provide the unique identifier of the project.
1393
+ # @param [Hash] opts the optional parameters
1394
+ # @return [Array<(ManagementProjectsCustomEventSchemasListResponseBody, Integer, Hash)>] ManagementProjectsCustomEventSchemasListResponseBody data, response status code and response headers
1395
+ private def list_custom_event_schemas_with_http_info(project_id, opts = {})
1396
+ if @api_client.config.debugging
1397
+ @api_client.config.logger.debug 'Calling API: ManagementApi.list_custom_event_schemas ...'
1398
+ end
1399
+ # resource path
1400
+ local_var_path = '/management/v1/projects/{projectId}/custom-event-schemas'.sub('{' + 'projectId' + '}', CGI.escape(project_id.to_s))
1401
+
1402
+ # query parameters
1403
+ query_params = opts[:query_params] || {}
1404
+
1405
+ # header parameters
1406
+ header_params = opts[:header_params] || {}
1407
+ # HTTP header 'Accept' (if needed)
1408
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
1409
+
1410
+ # form parameters
1411
+ form_params = opts[:form_params] || {}
1412
+
1413
+ # http body (model)
1414
+ post_body = opts[:debug_body]
1415
+
1416
+ # return_type
1417
+ return_type = opts[:debug_return_type] || 'ManagementProjectsCustomEventSchemasListResponseBody'
1418
+
1419
+ # auth_names
1420
+ auth_names = opts[:debug_auth_names] || ['X-Management-Token', 'X-Management-Id']
1421
+
1422
+ new_options = opts.merge(
1423
+ :operation => :"ManagementApi.list_custom_event_schemas",
1424
+ :header_params => header_params,
1425
+ :query_params => query_params,
1426
+ :form_params => form_params,
1427
+ :body => post_body,
1428
+ :auth_names => auth_names,
1429
+ :return_type => return_type
1430
+ )
1431
+
1432
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
1433
+ if @api_client.config.debugging
1434
+ @api_client.config.logger.debug "API called: ManagementApi#list_custom_event_schemas\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
1435
+ end
1436
+ return data, status_code, headers
1437
+ end
1438
+
1439
+ # List Metadata Schemas
1440
+ # Lists all metadata schemas available in the project. 📘 Metadata Documentation Read the Getting Started with Metadata articles to learn how metadata work in Voucherify.
1441
+ # @param project_id [String] Provide the unique identifier of the project.
1442
+ # @param [Hash] opts the optional parameters
1443
+ # @return [ManagementProjectsMetadataSchemasListResponseBody]
1444
+ def list_metadata_schemas1(project_id, opts = {})
1445
+ data, _status_code, _headers = list_metadata_schemas1_with_http_info(project_id, opts)
1446
+ data
1447
+ end
1448
+
1449
+ # List Metadata Schemas
1450
+ # Lists all metadata schemas available in the project. 📘 Metadata Documentation Read the Getting Started with Metadata articles to learn how metadata work in Voucherify.
1451
+ # @param project_id [String] Provide the unique identifier of the project.
1452
+ # @param [Hash] opts the optional parameters
1453
+ # @return [Array<(ManagementProjectsMetadataSchemasListResponseBody, Integer, Hash)>] ManagementProjectsMetadataSchemasListResponseBody data, response status code and response headers
1454
+ private def list_metadata_schemas1_with_http_info(project_id, opts = {})
1455
+ if @api_client.config.debugging
1456
+ @api_client.config.logger.debug 'Calling API: ManagementApi.list_metadata_schemas1 ...'
1457
+ end
1458
+ # resource path
1459
+ local_var_path = '/management/v1/projects/{projectId}/metadata-schemas'.sub('{' + 'projectId' + '}', CGI.escape(project_id.to_s))
1460
+
1461
+ # query parameters
1462
+ query_params = opts[:query_params] || {}
1463
+
1464
+ # header parameters
1465
+ header_params = opts[:header_params] || {}
1466
+ # HTTP header 'Accept' (if needed)
1467
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
1468
+
1469
+ # form parameters
1470
+ form_params = opts[:form_params] || {}
1471
+
1472
+ # http body (model)
1473
+ post_body = opts[:debug_body]
1474
+
1475
+ # return_type
1476
+ return_type = opts[:debug_return_type] || 'ManagementProjectsMetadataSchemasListResponseBody'
1477
+
1478
+ # auth_names
1479
+ auth_names = opts[:debug_auth_names] || ['X-Management-Token', 'X-Management-Id']
1480
+
1481
+ new_options = opts.merge(
1482
+ :operation => :"ManagementApi.list_metadata_schemas1",
1483
+ :header_params => header_params,
1484
+ :query_params => query_params,
1485
+ :form_params => form_params,
1486
+ :body => post_body,
1487
+ :auth_names => auth_names,
1488
+ :return_type => return_type
1489
+ )
1490
+
1491
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
1492
+ if @api_client.config.debugging
1493
+ @api_client.config.logger.debug "API called: ManagementApi#list_metadata_schemas1\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
1494
+ end
1495
+ return data, status_code, headers
1496
+ end
1497
+
1498
+ # List Projects
1499
+ # Lists all projects for the organization. The endpoint does not require any query parameters.
1500
+ # @param [Hash] opts the optional parameters
1501
+ # @return [ManagementProjectsListResponseBody]
1502
+ def list_projects(opts = {})
1503
+ data, _status_code, _headers = list_projects_with_http_info(opts)
1504
+ data
1505
+ end
1506
+
1507
+ # List Projects
1508
+ # Lists all projects for the organization. The endpoint does not require any query parameters.
1509
+ # @param [Hash] opts the optional parameters
1510
+ # @return [Array<(ManagementProjectsListResponseBody, Integer, Hash)>] ManagementProjectsListResponseBody data, response status code and response headers
1511
+ private def list_projects_with_http_info(opts = {})
1512
+ if @api_client.config.debugging
1513
+ @api_client.config.logger.debug 'Calling API: ManagementApi.list_projects ...'
1514
+ end
1515
+ # resource path
1516
+ local_var_path = '/management/v1/projects'
1517
+
1518
+ # query parameters
1519
+ query_params = opts[:query_params] || {}
1520
+
1521
+ # header parameters
1522
+ header_params = opts[:header_params] || {}
1523
+ # HTTP header 'Accept' (if needed)
1524
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
1525
+
1526
+ # form parameters
1527
+ form_params = opts[:form_params] || {}
1528
+
1529
+ # http body (model)
1530
+ post_body = opts[:debug_body]
1531
+
1532
+ # return_type
1533
+ return_type = opts[:debug_return_type] || 'ManagementProjectsListResponseBody'
1534
+
1535
+ # auth_names
1536
+ auth_names = opts[:debug_auth_names] || ['X-Management-Token', 'X-Management-Id']
1537
+
1538
+ new_options = opts.merge(
1539
+ :operation => :"ManagementApi.list_projects",
1540
+ :header_params => header_params,
1541
+ :query_params => query_params,
1542
+ :form_params => form_params,
1543
+ :body => post_body,
1544
+ :auth_names => auth_names,
1545
+ :return_type => return_type
1546
+ )
1547
+
1548
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
1549
+ if @api_client.config.debugging
1550
+ @api_client.config.logger.debug "API called: ManagementApi#list_projects\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
1551
+ end
1552
+ return data, status_code, headers
1553
+ end
1554
+
1555
+ # List Stacking Rules
1556
+ # Lists all stacking rules. Returns always a list with one item. This endpoint can be used to retrieve the default stacking rules. The default stacking rules do not have an ID that could be used with the Get Stacking Rules or Update Stacking Rules endpoints. 📘 Stacking Rules Documentation Read [the Stacking Rules article](https://support.voucherify.io/article/604-stacking-rules) to learn how they work.
1557
+ # @param project_id [String] Provide the unique identifier of the project.
1558
+ # @param [Hash] opts the optional parameters
1559
+ # @return [ManagementProjectsStackingRulesListResponseBody]
1560
+ def list_stacking_rules(project_id, opts = {})
1561
+ data, _status_code, _headers = list_stacking_rules_with_http_info(project_id, opts)
1562
+ data
1563
+ end
1564
+
1565
+ # List Stacking Rules
1566
+ # Lists all stacking rules. Returns always a list with one item. This endpoint can be used to retrieve the default stacking rules. The default stacking rules do not have an ID that could be used with the Get Stacking Rules or Update Stacking Rules endpoints. 📘 Stacking Rules Documentation Read [the Stacking Rules article](https://support.voucherify.io/article/604-stacking-rules) to learn how they work.
1567
+ # @param project_id [String] Provide the unique identifier of the project.
1568
+ # @param [Hash] opts the optional parameters
1569
+ # @return [Array<(ManagementProjectsStackingRulesListResponseBody, Integer, Hash)>] ManagementProjectsStackingRulesListResponseBody data, response status code and response headers
1570
+ private def list_stacking_rules_with_http_info(project_id, opts = {})
1571
+ if @api_client.config.debugging
1572
+ @api_client.config.logger.debug 'Calling API: ManagementApi.list_stacking_rules ...'
1573
+ end
1574
+ # resource path
1575
+ local_var_path = '/management/v1/projects/{projectId}/stacking-rules'.sub('{' + 'projectId' + '}', CGI.escape(project_id.to_s))
1576
+
1577
+ # query parameters
1578
+ query_params = opts[:query_params] || {}
1579
+
1580
+ # header parameters
1581
+ header_params = opts[:header_params] || {}
1582
+ # HTTP header 'Accept' (if needed)
1583
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
1584
+
1585
+ # form parameters
1586
+ form_params = opts[:form_params] || {}
1587
+
1588
+ # http body (model)
1589
+ post_body = opts[:debug_body]
1590
+
1591
+ # return_type
1592
+ return_type = opts[:debug_return_type] || 'ManagementProjectsStackingRulesListResponseBody'
1593
+
1594
+ # auth_names
1595
+ auth_names = opts[:debug_auth_names] || ['X-Management-Token', 'X-Management-Id']
1596
+
1597
+ new_options = opts.merge(
1598
+ :operation => :"ManagementApi.list_stacking_rules",
1599
+ :header_params => header_params,
1600
+ :query_params => query_params,
1601
+ :form_params => form_params,
1602
+ :body => post_body,
1603
+ :auth_names => auth_names,
1604
+ :return_type => return_type
1605
+ )
1606
+
1607
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
1608
+ if @api_client.config.debugging
1609
+ @api_client.config.logger.debug "API called: ManagementApi#list_stacking_rules\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
1610
+ end
1611
+ return data, status_code, headers
1612
+ end
1613
+
1614
+ # List Users
1615
+ # Lists all users assigned to the project.
1616
+ # @param project_id [String] Provide the unique identifier of the project.
1617
+ # @param [Hash] opts the optional parameters
1618
+ # @return [ManagementProjectsUsersListResponseBody]
1619
+ def list_users(project_id, opts = {})
1620
+ data, _status_code, _headers = list_users_with_http_info(project_id, opts)
1621
+ data
1622
+ end
1623
+
1624
+ # List Users
1625
+ # Lists all users assigned to the project.
1626
+ # @param project_id [String] Provide the unique identifier of the project.
1627
+ # @param [Hash] opts the optional parameters
1628
+ # @return [Array<(ManagementProjectsUsersListResponseBody, Integer, Hash)>] ManagementProjectsUsersListResponseBody data, response status code and response headers
1629
+ private def list_users_with_http_info(project_id, opts = {})
1630
+ if @api_client.config.debugging
1631
+ @api_client.config.logger.debug 'Calling API: ManagementApi.list_users ...'
1632
+ end
1633
+ # resource path
1634
+ local_var_path = '/management/v1/projects/{projectId}/users'.sub('{' + 'projectId' + '}', CGI.escape(project_id.to_s))
1635
+
1636
+ # query parameters
1637
+ query_params = opts[:query_params] || {}
1638
+
1639
+ # header parameters
1640
+ header_params = opts[:header_params] || {}
1641
+ # HTTP header 'Accept' (if needed)
1642
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
1643
+
1644
+ # form parameters
1645
+ form_params = opts[:form_params] || {}
1646
+
1647
+ # http body (model)
1648
+ post_body = opts[:debug_body]
1649
+
1650
+ # return_type
1651
+ return_type = opts[:debug_return_type] || 'ManagementProjectsUsersListResponseBody'
1652
+
1653
+ # auth_names
1654
+ auth_names = opts[:debug_auth_names] || ['X-Management-Token', 'X-Management-Id']
1655
+
1656
+ new_options = opts.merge(
1657
+ :operation => :"ManagementApi.list_users",
1658
+ :header_params => header_params,
1659
+ :query_params => query_params,
1660
+ :form_params => form_params,
1661
+ :body => post_body,
1662
+ :auth_names => auth_names,
1663
+ :return_type => return_type
1664
+ )
1665
+
1666
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
1667
+ if @api_client.config.debugging
1668
+ @api_client.config.logger.debug "API called: ManagementApi#list_users\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
1669
+ end
1670
+ return data, status_code, headers
1671
+ end
1672
+
1673
+ # List Webhooks
1674
+ # Lists all webhook configurations for the project. 📘 Webhook Documentation Read Webhooks v2024-01-1 article to learn how webhooks work in Voucherify.
1675
+ # @param project_id [String] Provide the unique identifier of the project.
1676
+ # @param [Hash] opts the optional parameters
1677
+ # @return [ManagementProjectsWebhooksListResponseBody]
1678
+ def list_webhooks(project_id, opts = {})
1679
+ data, _status_code, _headers = list_webhooks_with_http_info(project_id, opts)
1680
+ data
1681
+ end
1682
+
1683
+ # List Webhooks
1684
+ # Lists all webhook configurations for the project. 📘 Webhook Documentation Read Webhooks v2024-01-1 article to learn how webhooks work in Voucherify.
1685
+ # @param project_id [String] Provide the unique identifier of the project.
1686
+ # @param [Hash] opts the optional parameters
1687
+ # @return [Array<(ManagementProjectsWebhooksListResponseBody, Integer, Hash)>] ManagementProjectsWebhooksListResponseBody data, response status code and response headers
1688
+ private def list_webhooks_with_http_info(project_id, opts = {})
1689
+ if @api_client.config.debugging
1690
+ @api_client.config.logger.debug 'Calling API: ManagementApi.list_webhooks ...'
1691
+ end
1692
+ # resource path
1693
+ local_var_path = '/management/v1/projects/{projectId}/webhooks'.sub('{' + 'projectId' + '}', CGI.escape(project_id.to_s))
1694
+
1695
+ # query parameters
1696
+ query_params = opts[:query_params] || {}
1697
+
1698
+ # header parameters
1699
+ header_params = opts[:header_params] || {}
1700
+ # HTTP header 'Accept' (if needed)
1701
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
1702
+
1703
+ # form parameters
1704
+ form_params = opts[:form_params] || {}
1705
+
1706
+ # http body (model)
1707
+ post_body = opts[:debug_body]
1708
+
1709
+ # return_type
1710
+ return_type = opts[:debug_return_type] || 'ManagementProjectsWebhooksListResponseBody'
1711
+
1712
+ # auth_names
1713
+ auth_names = opts[:debug_auth_names] || ['X-Management-Token', 'X-Management-Id']
1714
+
1715
+ new_options = opts.merge(
1716
+ :operation => :"ManagementApi.list_webhooks",
1717
+ :header_params => header_params,
1718
+ :query_params => query_params,
1719
+ :form_params => form_params,
1720
+ :body => post_body,
1721
+ :auth_names => auth_names,
1722
+ :return_type => return_type
1723
+ )
1724
+
1725
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
1726
+ if @api_client.config.debugging
1727
+ @api_client.config.logger.debug "API called: ManagementApi#list_webhooks\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
1728
+ end
1729
+ return data, status_code, headers
1730
+ end
1731
+
1732
+ # Copy Campaign Template to a Project
1733
+ # Copies a campaign template to another project. The resources, like validation rules or products, will not be copied to the destination project yet. When the template is used to create a new campaign or add a new promotion tier, the resources will be created in the destination project. 📘 Campaign Templates – Documentation Read the [Campaign Templates documentation](https://support.voucherify.io/article/620-campaign-templates) to learn more about this feature.
1734
+ # @param project_id [String] Provide the unique identifier of the project.
1735
+ # @param campaign_template_id [String] Provide the unique identifier of the campaign template.
1736
+ # @param [Hash] opts the optional parameters
1737
+ # @option opts [ManagementProjectsTemplatesCampaignsCopyCreateRequestBody] :management_projects_templates_campaigns_copy_create_request_body Determines the details about the template in the destination project as well as the destination project itself.
1738
+ # @return [ManagementProjectsTemplatesCampaignsCopyCreateResponseBody]
1739
+ def management_copy_campaign_template(project_id, campaign_template_id, opts = {})
1740
+ data, _status_code, _headers = management_copy_campaign_template_with_http_info(project_id, campaign_template_id, opts)
1741
+ data
1742
+ end
1743
+
1744
+ # Copy Campaign Template to a Project
1745
+ # Copies a campaign template to another project. The resources, like validation rules or products, will not be copied to the destination project yet. When the template is used to create a new campaign or add a new promotion tier, the resources will be created in the destination project. 📘 Campaign Templates – Documentation Read the [Campaign Templates documentation](https://support.voucherify.io/article/620-campaign-templates) to learn more about this feature.
1746
+ # @param project_id [String] Provide the unique identifier of the project.
1747
+ # @param campaign_template_id [String] Provide the unique identifier of the campaign template.
1748
+ # @param [Hash] opts the optional parameters
1749
+ # @option opts [ManagementProjectsTemplatesCampaignsCopyCreateRequestBody] :management_projects_templates_campaigns_copy_create_request_body Determines the details about the template in the destination project as well as the destination project itself.
1750
+ # @return [Array<(ManagementProjectsTemplatesCampaignsCopyCreateResponseBody, Integer, Hash)>] ManagementProjectsTemplatesCampaignsCopyCreateResponseBody data, response status code and response headers
1751
+ private def management_copy_campaign_template_with_http_info(project_id, campaign_template_id, opts = {})
1752
+ if @api_client.config.debugging
1753
+ @api_client.config.logger.debug 'Calling API: ManagementApi.management_copy_campaign_template ...'
1754
+ end
1755
+ # resource path
1756
+ local_var_path = '/management/v1/projects/{projectId}/templates/campaigns/{campaignTemplateId}/copy'.sub('{' + 'projectId' + '}', CGI.escape(project_id.to_s)).sub('{' + 'campaignTemplateId' + '}', CGI.escape(campaign_template_id.to_s))
1757
+
1758
+ # query parameters
1759
+ query_params = opts[:query_params] || {}
1760
+
1761
+ # header parameters
1762
+ header_params = opts[:header_params] || {}
1763
+ # HTTP header 'Accept' (if needed)
1764
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
1765
+ # HTTP header 'Content-Type'
1766
+ content_type = @api_client.select_header_content_type(['application/json'])
1767
+ if !content_type.nil?
1768
+ header_params['Content-Type'] = content_type
1769
+ end
1770
+
1771
+ # form parameters
1772
+ form_params = opts[:form_params] || {}
1773
+
1774
+ # http body (model)
1775
+ post_body = opts[:debug_body] || @api_client.object_to_http_body(opts[:'management_projects_templates_campaigns_copy_create_request_body'])
1776
+
1777
+ # return_type
1778
+ return_type = opts[:debug_return_type] || 'ManagementProjectsTemplatesCampaignsCopyCreateResponseBody'
1779
+
1780
+ # auth_names
1781
+ auth_names = opts[:debug_auth_names] || ['X-Management-Token', 'X-Management-Id']
1782
+
1783
+ new_options = opts.merge(
1784
+ :operation => :"ManagementApi.management_copy_campaign_template",
1785
+ :header_params => header_params,
1786
+ :query_params => query_params,
1787
+ :form_params => form_params,
1788
+ :body => post_body,
1789
+ :auth_names => auth_names,
1790
+ :return_type => return_type
1791
+ )
1792
+
1793
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
1794
+ if @api_client.config.debugging
1795
+ @api_client.config.logger.debug "API called: ManagementApi#management_copy_campaign_template\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
1796
+ end
1797
+ return data, status_code, headers
1798
+ end
1799
+
1800
+ # List Campaign Templates
1801
+ # Lists all campaign templates available in the project. 👍 List Campaign Templates This endpoint works in the same way as the List Campaign Templates endpoint. 📘 Campaign Templates – Documentation Read the [Campaign Templates documentation](https://support.voucherify.io/article/620-campaign-templates) to learn more about this feature.
1802
+ # @param project_id [String] Provide the unique identifier of the project.
1803
+ # @param [Hash] opts the optional parameters
1804
+ # @option opts [Integer] :limit Limits the number of objects to be returned. The limit can range between 1 and 100 items. If no limit is set, it returns 10 items.
1805
+ # @option opts [String] :starting_after_id A cursor for pagination. It retrieves the campaign templates created after a template with the given ID.
1806
+ # @option opts [ParameterTemplatesList] :order Sorts the results using one of the filtering options, where the dash - preceding a sorting option means sorting in a descending order.
1807
+ # @option opts [Boolean] :include_total If set to true, the response returns the number of all campaign templates, regardless of the applied filters or limits. Set to false by default.
1808
+ # @option opts [ParameterFiltersListTemplates] :filters Filters for listing templates.
1809
+ # @return [ManagementProjectsTemplatesCampaignsListResponseBody]
1810
+ def management_list_campaign_templates(project_id, opts = {})
1811
+ data, _status_code, _headers = management_list_campaign_templates_with_http_info(project_id, opts)
1812
+ data
1813
+ end
1814
+
1815
+ # List Campaign Templates
1816
+ # Lists all campaign templates available in the project. 👍 List Campaign Templates This endpoint works in the same way as the List Campaign Templates endpoint. 📘 Campaign Templates – Documentation Read the [Campaign Templates documentation](https://support.voucherify.io/article/620-campaign-templates) to learn more about this feature.
1817
+ # @param project_id [String] Provide the unique identifier of the project.
1818
+ # @param [Hash] opts the optional parameters
1819
+ # @option opts [Integer] :limit Limits the number of objects to be returned. The limit can range between 1 and 100 items. If no limit is set, it returns 10 items.
1820
+ # @option opts [String] :starting_after_id A cursor for pagination. It retrieves the campaign templates created after a template with the given ID.
1821
+ # @option opts [ParameterTemplatesList] :order Sorts the results using one of the filtering options, where the dash - preceding a sorting option means sorting in a descending order.
1822
+ # @option opts [Boolean] :include_total If set to true, the response returns the number of all campaign templates, regardless of the applied filters or limits. Set to false by default.
1823
+ # @option opts [ParameterFiltersListTemplates] :filters Filters for listing templates.
1824
+ # @return [Array<(ManagementProjectsTemplatesCampaignsListResponseBody, Integer, Hash)>] ManagementProjectsTemplatesCampaignsListResponseBody data, response status code and response headers
1825
+ private def management_list_campaign_templates_with_http_info(project_id, opts = {})
1826
+ if @api_client.config.debugging
1827
+ @api_client.config.logger.debug 'Calling API: ManagementApi.management_list_campaign_templates ...'
1828
+ end
1829
+ # resource path
1830
+ local_var_path = '/management/v1/projects/{projectId}/templates/campaigns'.sub('{' + 'projectId' + '}', CGI.escape(project_id.to_s))
1831
+
1832
+ # query parameters
1833
+ query_params = opts[:query_params] || {}
1834
+ query_params[:'limit'] = opts[:'limit'] if !opts[:'limit'].nil?
1835
+ query_params[:'starting_after_id'] = opts[:'starting_after_id'] if !opts[:'starting_after_id'].nil?
1836
+ query_params[:'order'] = opts[:'order'] if !opts[:'order'].nil?
1837
+ query_params[:'include_total'] = opts[:'include_total'] if !opts[:'include_total'].nil?
1838
+ query_params[:'filters'] = opts[:'filters'] if !opts[:'filters'].nil?
1839
+
1840
+ # header parameters
1841
+ header_params = opts[:header_params] || {}
1842
+ # HTTP header 'Accept' (if needed)
1843
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
1844
+
1845
+ # form parameters
1846
+ form_params = opts[:form_params] || {}
1847
+
1848
+ # http body (model)
1849
+ post_body = opts[:debug_body]
1850
+
1851
+ # return_type
1852
+ return_type = opts[:debug_return_type] || 'ManagementProjectsTemplatesCampaignsListResponseBody'
1853
+
1854
+ # auth_names
1855
+ auth_names = opts[:debug_auth_names] || ['X-Management-Token', 'X-Management-Id']
1856
+
1857
+ new_options = opts.merge(
1858
+ :operation => :"ManagementApi.management_list_campaign_templates",
1859
+ :header_params => header_params,
1860
+ :query_params => query_params,
1861
+ :form_params => form_params,
1862
+ :body => post_body,
1863
+ :auth_names => auth_names,
1864
+ :return_type => return_type
1865
+ )
1866
+
1867
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
1868
+ if @api_client.config.debugging
1869
+ @api_client.config.logger.debug "API called: ManagementApi#management_list_campaign_templates\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
1870
+ end
1871
+ return data, status_code, headers
1872
+ end
1873
+
1874
+ # Unassign User
1875
+ # Unassigns the user from the project. If the user is currently logged in, they are automatically logged out. If the user is assigned to only one project, they cannot be unassigned from that project.
1876
+ # @param project_id [String] Provide the unique identifier of the project.
1877
+ # @param user_id [String] Provide the unique identifier of the user. Alternatively, provide the users login.
1878
+ # @param [Hash] opts the optional parameters
1879
+ # @return [nil]
1880
+ def unassign_user(project_id, user_id, opts = {})
1881
+ unassign_user_with_http_info(project_id, user_id, opts)
1882
+ nil
1883
+ end
1884
+
1885
+ # Unassign User
1886
+ # Unassigns the user from the project. If the user is currently logged in, they are automatically logged out. If the user is assigned to only one project, they cannot be unassigned from that project.
1887
+ # @param project_id [String] Provide the unique identifier of the project.
1888
+ # @param user_id [String] Provide the unique identifier of the user. Alternatively, provide the users login.
1889
+ # @param [Hash] opts the optional parameters
1890
+ # @return [Array<(nil, Integer, Hash)>] nil, response status code and response headers
1891
+ private def unassign_user_with_http_info(project_id, user_id, opts = {})
1892
+ if @api_client.config.debugging
1893
+ @api_client.config.logger.debug 'Calling API: ManagementApi.unassign_user ...'
1894
+ end
1895
+ # resource path
1896
+ local_var_path = '/management/v1/projects/{projectId}/users/{userId}'.sub('{' + 'projectId' + '}', CGI.escape(project_id.to_s)).sub('{' + 'userId' + '}', CGI.escape(user_id.to_s))
1897
+
1898
+ # query parameters
1899
+ query_params = opts[:query_params] || {}
1900
+
1901
+ # header parameters
1902
+ header_params = opts[:header_params] || {}
1903
+
1904
+ # form parameters
1905
+ form_params = opts[:form_params] || {}
1906
+
1907
+ # http body (model)
1908
+ post_body = opts[:debug_body]
1909
+
1910
+ # return_type
1911
+ return_type = opts[:debug_return_type]
1912
+
1913
+ # auth_names
1914
+ auth_names = opts[:debug_auth_names] || ['X-Management-Token', 'X-Management-Id']
1915
+
1916
+ new_options = opts.merge(
1917
+ :operation => :"ManagementApi.unassign_user",
1918
+ :header_params => header_params,
1919
+ :query_params => query_params,
1920
+ :form_params => form_params,
1921
+ :body => post_body,
1922
+ :auth_names => auth_names,
1923
+ :return_type => return_type
1924
+ )
1925
+
1926
+ data, status_code, headers = @api_client.call_api(:DELETE, local_var_path, new_options)
1927
+ if @api_client.config.debugging
1928
+ @api_client.config.logger.debug "API called: ManagementApi#unassign_user\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
1929
+ end
1930
+ return data, status_code, headers
1931
+ end
1932
+
1933
+ # Update Brand
1934
+ # Updates a brand configuration. Only the fields sent in the request will be updated. The fields omitted in the request will remain unchanged. 📘 White Labelling The white labelling settings which can be found in Project Settings > Brand Details and which are available only for Enterprise clients as a separate service can be configured only in the user interface.
1935
+ # @param project_id [String] Provide the unique identifier of the project.
1936
+ # @param branding_id [String] Provide the unique identifier of the brand configuration.
1937
+ # @param [Hash] opts the optional parameters
1938
+ # @option opts [ManagementProjectsBrandingUpdateRequestBody] :management_projects_branding_update_request_body Defines the brand configuration to be updated.
1939
+ # @return [ManagementProjectsBrandingUpdateResponseBody]
1940
+ def update_brand(project_id, branding_id, opts = {})
1941
+ data, _status_code, _headers = update_brand_with_http_info(project_id, branding_id, opts)
1942
+ data
1943
+ end
1944
+
1945
+ # Update Brand
1946
+ # Updates a brand configuration. Only the fields sent in the request will be updated. The fields omitted in the request will remain unchanged. 📘 White Labelling The white labelling settings which can be found in Project Settings &gt; Brand Details and which are available only for Enterprise clients as a separate service can be configured only in the user interface.
1947
+ # @param project_id [String] Provide the unique identifier of the project.
1948
+ # @param branding_id [String] Provide the unique identifier of the brand configuration.
1949
+ # @param [Hash] opts the optional parameters
1950
+ # @option opts [ManagementProjectsBrandingUpdateRequestBody] :management_projects_branding_update_request_body Defines the brand configuration to be updated.
1951
+ # @return [Array<(ManagementProjectsBrandingUpdateResponseBody, Integer, Hash)>] ManagementProjectsBrandingUpdateResponseBody data, response status code and response headers
1952
+ private def update_brand_with_http_info(project_id, branding_id, opts = {})
1953
+ if @api_client.config.debugging
1954
+ @api_client.config.logger.debug 'Calling API: ManagementApi.update_brand ...'
1955
+ end
1956
+ # resource path
1957
+ local_var_path = '/management/v1/projects/{projectId}/branding/{brandingId}'.sub('{' + 'projectId' + '}', CGI.escape(project_id.to_s)).sub('{' + 'brandingId' + '}', CGI.escape(branding_id.to_s))
1958
+
1959
+ # query parameters
1960
+ query_params = opts[:query_params] || {}
1961
+
1962
+ # header parameters
1963
+ header_params = opts[:header_params] || {}
1964
+ # HTTP header 'Accept' (if needed)
1965
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
1966
+ # HTTP header 'Content-Type'
1967
+ content_type = @api_client.select_header_content_type(['application/json'])
1968
+ if !content_type.nil?
1969
+ header_params['Content-Type'] = content_type
1970
+ end
1971
+
1972
+ # form parameters
1973
+ form_params = opts[:form_params] || {}
1974
+
1975
+ # http body (model)
1976
+ post_body = opts[:debug_body] || @api_client.object_to_http_body(opts[:'management_projects_branding_update_request_body'])
1977
+
1978
+ # return_type
1979
+ return_type = opts[:debug_return_type] || 'ManagementProjectsBrandingUpdateResponseBody'
1980
+
1981
+ # auth_names
1982
+ auth_names = opts[:debug_auth_names] || ['X-Management-Token', 'X-Management-Id']
1983
+
1984
+ new_options = opts.merge(
1985
+ :operation => :"ManagementApi.update_brand",
1986
+ :header_params => header_params,
1987
+ :query_params => query_params,
1988
+ :form_params => form_params,
1989
+ :body => post_body,
1990
+ :auth_names => auth_names,
1991
+ :return_type => return_type
1992
+ )
1993
+
1994
+ data, status_code, headers = @api_client.call_api(:PUT, local_var_path, new_options)
1995
+ if @api_client.config.debugging
1996
+ @api_client.config.logger.debug "API called: ManagementApi#update_brand\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
1997
+ end
1998
+ return data, status_code, headers
1999
+ end
2000
+
2001
+ # Update Custom Event Schema
2002
+ # Updates a custom event schema. With this request, you can: - Add a non-existing property to a custom event schema. - Update an existing property. In the request, you can provide only those properties you want to add or update. Definitions omitted in the request remain unchanged. 👍 Additional Notes - You can change the type of an existing property, e.g. from string to number. - You can remove a custom property with this endpoint by providing deleted: true in the request. However, you cannot permanently remove an event definition or its property with this endpoint. 📘 Custom Event Documentation Read [Custom Events](https://support.voucherify.io/article/111-custom-events) article to learn how custom events work in Voucherify. Read also the details about the Track Custom Event endpoint and the Custom Event Object.
2003
+ # @param project_id [String] Provide the unique identifier of the project.
2004
+ # @param custom_event_schema_id [String] Provide the unique identifier of the custom event schema.
2005
+ # @param [Hash] opts the optional parameters
2006
+ # @option opts [ManagementProjectsCustomEventSchemasUpdateRequestBody] :management_projects_custom_event_schemas_update_request_body Defines the custom event schema to be updated.
2007
+ # @return [ManagementProjectsCustomEventSchemasUpdateResponseBody]
2008
+ def update_custom_event_schema(project_id, custom_event_schema_id, opts = {})
2009
+ data, _status_code, _headers = update_custom_event_schema_with_http_info(project_id, custom_event_schema_id, opts)
2010
+ data
2011
+ end
2012
+
2013
+ # Update Custom Event Schema
2014
+ # Updates a custom event schema. With this request, you can: - Add a non-existing property to a custom event schema. - Update an existing property. In the request, you can provide only those properties you want to add or update. Definitions omitted in the request remain unchanged. 👍 Additional Notes - You can change the type of an existing property, e.g. from string to number. - You can remove a custom property with this endpoint by providing deleted: true in the request. However, you cannot permanently remove an event definition or its property with this endpoint. 📘 Custom Event Documentation Read [Custom Events](https://support.voucherify.io/article/111-custom-events) article to learn how custom events work in Voucherify. Read also the details about the Track Custom Event endpoint and the Custom Event Object.
2015
+ # @param project_id [String] Provide the unique identifier of the project.
2016
+ # @param custom_event_schema_id [String] Provide the unique identifier of the custom event schema.
2017
+ # @param [Hash] opts the optional parameters
2018
+ # @option opts [ManagementProjectsCustomEventSchemasUpdateRequestBody] :management_projects_custom_event_schemas_update_request_body Defines the custom event schema to be updated.
2019
+ # @return [Array<(ManagementProjectsCustomEventSchemasUpdateResponseBody, Integer, Hash)>] ManagementProjectsCustomEventSchemasUpdateResponseBody data, response status code and response headers
2020
+ private def update_custom_event_schema_with_http_info(project_id, custom_event_schema_id, opts = {})
2021
+ if @api_client.config.debugging
2022
+ @api_client.config.logger.debug 'Calling API: ManagementApi.update_custom_event_schema ...'
2023
+ end
2024
+ # resource path
2025
+ local_var_path = '/management/v1/projects/{projectId}/custom-event-schemas/{customEventSchemaId}'.sub('{' + 'projectId' + '}', CGI.escape(project_id.to_s)).sub('{' + 'customEventSchemaId' + '}', CGI.escape(custom_event_schema_id.to_s))
2026
+
2027
+ # query parameters
2028
+ query_params = opts[:query_params] || {}
2029
+
2030
+ # header parameters
2031
+ header_params = opts[:header_params] || {}
2032
+ # HTTP header 'Accept' (if needed)
2033
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
2034
+ # HTTP header 'Content-Type'
2035
+ content_type = @api_client.select_header_content_type(['application/json'])
2036
+ if !content_type.nil?
2037
+ header_params['Content-Type'] = content_type
2038
+ end
2039
+
2040
+ # form parameters
2041
+ form_params = opts[:form_params] || {}
2042
+
2043
+ # http body (model)
2044
+ post_body = opts[:debug_body] || @api_client.object_to_http_body(opts[:'management_projects_custom_event_schemas_update_request_body'])
2045
+
2046
+ # return_type
2047
+ return_type = opts[:debug_return_type] || 'ManagementProjectsCustomEventSchemasUpdateResponseBody'
2048
+
2049
+ # auth_names
2050
+ auth_names = opts[:debug_auth_names] || ['X-Management-Token', 'X-Management-Id']
2051
+
2052
+ new_options = opts.merge(
2053
+ :operation => :"ManagementApi.update_custom_event_schema",
2054
+ :header_params => header_params,
2055
+ :query_params => query_params,
2056
+ :form_params => form_params,
2057
+ :body => post_body,
2058
+ :auth_names => auth_names,
2059
+ :return_type => return_type
2060
+ )
2061
+
2062
+ data, status_code, headers = @api_client.call_api(:PUT, local_var_path, new_options)
2063
+ if @api_client.config.debugging
2064
+ @api_client.config.logger.debug "API called: ManagementApi#update_custom_event_schema\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
2065
+ end
2066
+ return data, status_code, headers
2067
+ end
2068
+
2069
+ # Update Metadata Schema
2070
+ # Updates a metadata schema. With this request, you can: - Add a non-existing attribute definition to the metadata schema. - Update an existing attribute definition by overwriting its current values. In the request, you can provide only those definitions you want to add or update. Definitions omitted in the request remain unchanged. However, if you want to update a definition, you will have to add all its current key-value pairs as well. Only the pairs sent in the request are saved for this definition. This means that the key-value pairs that are not sent in a request are restored to default values. For example, if your definition has an array with values and it is not sent in an update request, the array values will be deleted. 👍 Additional Notes - You cannot change the type of an existing schema, e.g. from string to number. - You can remove a definition with this endpoint by providing deleted: true in the request. It will be moved to the Removed definitions section in the user interface. However, you cannot permanently remove a definition with this endpoint. 📘 Metadata Documentation Read the Getting Started with Metadata articles to learn how metadata work in Voucherify.
2071
+ # @param project_id [String] Provide the unique identifier of the project.
2072
+ # @param metadata_schema_id [String] Provide the unique identifier of the metadata schema.
2073
+ # @param [Hash] opts the optional parameters
2074
+ # @option opts [ManagementProjectsMetadataSchemasUpdateRequestBody] :management_projects_metadata_schemas_update_request_body Defines the metadata schema to be updated.
2075
+ # @return [ManagementProjectsMetadataSchemasUpdateResponseBody]
2076
+ def update_metadata_schema(project_id, metadata_schema_id, opts = {})
2077
+ data, _status_code, _headers = update_metadata_schema_with_http_info(project_id, metadata_schema_id, opts)
2078
+ data
2079
+ end
2080
+
2081
+ # Update Metadata Schema
2082
+ # Updates a metadata schema. With this request, you can: - Add a non-existing attribute definition to the metadata schema. - Update an existing attribute definition by overwriting its current values. In the request, you can provide only those definitions you want to add or update. Definitions omitted in the request remain unchanged. However, if you want to update a definition, you will have to add all its current key-value pairs as well. Only the pairs sent in the request are saved for this definition. This means that the key-value pairs that are not sent in a request are restored to default values. For example, if your definition has an array with values and it is not sent in an update request, the array values will be deleted. 👍 Additional Notes - You cannot change the type of an existing schema, e.g. from string to number. - You can remove a definition with this endpoint by providing deleted: true in the request. It will be moved to the Removed definitions section in the user interface. However, you cannot permanently remove a definition with this endpoint. 📘 Metadata Documentation Read the Getting Started with Metadata articles to learn how metadata work in Voucherify.
2083
+ # @param project_id [String] Provide the unique identifier of the project.
2084
+ # @param metadata_schema_id [String] Provide the unique identifier of the metadata schema.
2085
+ # @param [Hash] opts the optional parameters
2086
+ # @option opts [ManagementProjectsMetadataSchemasUpdateRequestBody] :management_projects_metadata_schemas_update_request_body Defines the metadata schema to be updated.
2087
+ # @return [Array<(ManagementProjectsMetadataSchemasUpdateResponseBody, Integer, Hash)>] ManagementProjectsMetadataSchemasUpdateResponseBody data, response status code and response headers
2088
+ private def update_metadata_schema_with_http_info(project_id, metadata_schema_id, opts = {})
2089
+ if @api_client.config.debugging
2090
+ @api_client.config.logger.debug 'Calling API: ManagementApi.update_metadata_schema ...'
2091
+ end
2092
+ # resource path
2093
+ local_var_path = '/management/v1/projects/{projectId}/metadata-schemas/{metadataSchemaId}'.sub('{' + 'projectId' + '}', CGI.escape(project_id.to_s)).sub('{' + 'metadataSchemaId' + '}', CGI.escape(metadata_schema_id.to_s))
2094
+
2095
+ # query parameters
2096
+ query_params = opts[:query_params] || {}
2097
+
2098
+ # header parameters
2099
+ header_params = opts[:header_params] || {}
2100
+ # HTTP header 'Accept' (if needed)
2101
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
2102
+ # HTTP header 'Content-Type'
2103
+ content_type = @api_client.select_header_content_type(['application/json'])
2104
+ if !content_type.nil?
2105
+ header_params['Content-Type'] = content_type
2106
+ end
2107
+
2108
+ # form parameters
2109
+ form_params = opts[:form_params] || {}
2110
+
2111
+ # http body (model)
2112
+ post_body = opts[:debug_body] || @api_client.object_to_http_body(opts[:'management_projects_metadata_schemas_update_request_body'])
2113
+
2114
+ # return_type
2115
+ return_type = opts[:debug_return_type] || 'ManagementProjectsMetadataSchemasUpdateResponseBody'
2116
+
2117
+ # auth_names
2118
+ auth_names = opts[:debug_auth_names] || ['X-Management-Token', 'X-Management-Id']
2119
+
2120
+ new_options = opts.merge(
2121
+ :operation => :"ManagementApi.update_metadata_schema",
2122
+ :header_params => header_params,
2123
+ :query_params => query_params,
2124
+ :form_params => form_params,
2125
+ :body => post_body,
2126
+ :auth_names => auth_names,
2127
+ :return_type => return_type
2128
+ )
2129
+
2130
+ data, status_code, headers = @api_client.call_api(:PUT, local_var_path, new_options)
2131
+ if @api_client.config.debugging
2132
+ @api_client.config.logger.debug "API called: ManagementApi#update_metadata_schema\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
2133
+ end
2134
+ return data, status_code, headers
2135
+ end
2136
+
2137
+ # Update Project
2138
+ # Updates an existing project. You can add or modify settings for timezone, currency, notifications, and other details. Only the fields sent in the request will be updated.
2139
+ # @param project_id [String] Provide the unique identifier of the project.
2140
+ # @param [Hash] opts the optional parameters
2141
+ # @option opts [ManagementProjectsUpdateRequestBody] :management_projects_update_request_body Define the project details to be updated.
2142
+ # @return [ManagementProjectsUpdateResponseBody]
2143
+ def update_project(project_id, opts = {})
2144
+ data, _status_code, _headers = update_project_with_http_info(project_id, opts)
2145
+ data
2146
+ end
2147
+
2148
+ # Update Project
2149
+ # Updates an existing project. You can add or modify settings for timezone, currency, notifications, and other details. Only the fields sent in the request will be updated.
2150
+ # @param project_id [String] Provide the unique identifier of the project.
2151
+ # @param [Hash] opts the optional parameters
2152
+ # @option opts [ManagementProjectsUpdateRequestBody] :management_projects_update_request_body Define the project details to be updated.
2153
+ # @return [Array<(ManagementProjectsUpdateResponseBody, Integer, Hash)>] ManagementProjectsUpdateResponseBody data, response status code and response headers
2154
+ private def update_project_with_http_info(project_id, opts = {})
2155
+ if @api_client.config.debugging
2156
+ @api_client.config.logger.debug 'Calling API: ManagementApi.update_project ...'
2157
+ end
2158
+ # resource path
2159
+ local_var_path = '/management/v1/projects/{projectId}'.sub('{' + 'projectId' + '}', CGI.escape(project_id.to_s))
2160
+
2161
+ # query parameters
2162
+ query_params = opts[:query_params] || {}
2163
+
2164
+ # header parameters
2165
+ header_params = opts[:header_params] || {}
2166
+ # HTTP header 'Accept' (if needed)
2167
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
2168
+ # HTTP header 'Content-Type'
2169
+ content_type = @api_client.select_header_content_type(['application/json'])
2170
+ if !content_type.nil?
2171
+ header_params['Content-Type'] = content_type
2172
+ end
2173
+
2174
+ # form parameters
2175
+ form_params = opts[:form_params] || {}
2176
+
2177
+ # http body (model)
2178
+ post_body = opts[:debug_body] || @api_client.object_to_http_body(opts[:'management_projects_update_request_body'])
2179
+
2180
+ # return_type
2181
+ return_type = opts[:debug_return_type] || 'ManagementProjectsUpdateResponseBody'
2182
+
2183
+ # auth_names
2184
+ auth_names = opts[:debug_auth_names] || ['X-Management-Token', 'X-Management-Id']
2185
+
2186
+ new_options = opts.merge(
2187
+ :operation => :"ManagementApi.update_project",
2188
+ :header_params => header_params,
2189
+ :query_params => query_params,
2190
+ :form_params => form_params,
2191
+ :body => post_body,
2192
+ :auth_names => auth_names,
2193
+ :return_type => return_type
2194
+ )
2195
+
2196
+ data, status_code, headers = @api_client.call_api(:PUT, local_var_path, new_options)
2197
+ if @api_client.config.debugging
2198
+ @api_client.config.logger.debug "API called: ManagementApi#update_project\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
2199
+ end
2200
+ return data, status_code, headers
2201
+ end
2202
+
2203
+ # Update Stacking Rules
2204
+ # Updates the stacking rules. Only the provided fields will be updated. However, if you update an array, the content of the array is overwritten. This means that if you want to add new values to an array and retain existing ones, you need to provide both the existing and new values in the request. 📘 Stacking Rules Documentation Read [the Stacking Rules article](https://support.voucherify.io/article/604-stacking-rules) to learn how they work.
2205
+ # @param project_id [String] Provide the unique identifier of the project.
2206
+ # @param stacking_rules_id [String] Provide the unique identifier of the stacking rules.
2207
+ # @param [Hash] opts the optional parameters
2208
+ # @option opts [ManagementProjectsStackingRulesUpdateRequestBody] :management_projects_stacking_rules_update_request_body Defines the stacking rules to be updated.
2209
+ # @return [ManagementProjectsStackingRulesUpdateResponseBody]
2210
+ def update_stacking_rules(project_id, stacking_rules_id, opts = {})
2211
+ data, _status_code, _headers = update_stacking_rules_with_http_info(project_id, stacking_rules_id, opts)
2212
+ data
2213
+ end
2214
+
2215
+ # Update Stacking Rules
2216
+ # Updates the stacking rules. Only the provided fields will be updated. However, if you update an array, the content of the array is overwritten. This means that if you want to add new values to an array and retain existing ones, you need to provide both the existing and new values in the request. 📘 Stacking Rules Documentation Read [the Stacking Rules article](https://support.voucherify.io/article/604-stacking-rules) to learn how they work.
2217
+ # @param project_id [String] Provide the unique identifier of the project.
2218
+ # @param stacking_rules_id [String] Provide the unique identifier of the stacking rules.
2219
+ # @param [Hash] opts the optional parameters
2220
+ # @option opts [ManagementProjectsStackingRulesUpdateRequestBody] :management_projects_stacking_rules_update_request_body Defines the stacking rules to be updated.
2221
+ # @return [Array<(ManagementProjectsStackingRulesUpdateResponseBody, Integer, Hash)>] ManagementProjectsStackingRulesUpdateResponseBody data, response status code and response headers
2222
+ private def update_stacking_rules_with_http_info(project_id, stacking_rules_id, opts = {})
2223
+ if @api_client.config.debugging
2224
+ @api_client.config.logger.debug 'Calling API: ManagementApi.update_stacking_rules ...'
2225
+ end
2226
+ # resource path
2227
+ local_var_path = '/management/v1/projects/{projectId}/stacking-rules/{stackingRulesId}'.sub('{' + 'projectId' + '}', CGI.escape(project_id.to_s)).sub('{' + 'stackingRulesId' + '}', CGI.escape(stacking_rules_id.to_s))
2228
+
2229
+ # query parameters
2230
+ query_params = opts[:query_params] || {}
2231
+
2232
+ # header parameters
2233
+ header_params = opts[:header_params] || {}
2234
+ # HTTP header 'Accept' (if needed)
2235
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
2236
+ # HTTP header 'Content-Type'
2237
+ content_type = @api_client.select_header_content_type(['application/json'])
2238
+ if !content_type.nil?
2239
+ header_params['Content-Type'] = content_type
2240
+ end
2241
+
2242
+ # form parameters
2243
+ form_params = opts[:form_params] || {}
2244
+
2245
+ # http body (model)
2246
+ post_body = opts[:debug_body] || @api_client.object_to_http_body(opts[:'management_projects_stacking_rules_update_request_body'])
2247
+
2248
+ # return_type
2249
+ return_type = opts[:debug_return_type] || 'ManagementProjectsStackingRulesUpdateResponseBody'
2250
+
2251
+ # auth_names
2252
+ auth_names = opts[:debug_auth_names] || ['X-Management-Token', 'X-Management-Id']
2253
+
2254
+ new_options = opts.merge(
2255
+ :operation => :"ManagementApi.update_stacking_rules",
2256
+ :header_params => header_params,
2257
+ :query_params => query_params,
2258
+ :form_params => form_params,
2259
+ :body => post_body,
2260
+ :auth_names => auth_names,
2261
+ :return_type => return_type
2262
+ )
2263
+
2264
+ data, status_code, headers = @api_client.call_api(:PUT, local_var_path, new_options)
2265
+ if @api_client.config.debugging
2266
+ @api_client.config.logger.debug "API called: ManagementApi#update_stacking_rules\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
2267
+ end
2268
+ return data, status_code, headers
2269
+ end
2270
+
2271
+ # Update User
2272
+ # Updates the users role.
2273
+ # @param project_id [String] Provide the unique identifier of the project.
2274
+ # @param user_id [String] Provide the unique identifier of the user. Alternatively, provide the users login.
2275
+ # @param [Hash] opts the optional parameters
2276
+ # @option opts [ManagementProjectsUsersUpdateRoleRequestBody] :management_projects_users_update_role_request_body Defines the users new role.
2277
+ # @return [ManagementProjectsUsersUpdateRoleResponseBody]
2278
+ def update_user(project_id, user_id, opts = {})
2279
+ data, _status_code, _headers = update_user_with_http_info(project_id, user_id, opts)
2280
+ data
2281
+ end
2282
+
2283
+ # Update User
2284
+ # Updates the users role.
2285
+ # @param project_id [String] Provide the unique identifier of the project.
2286
+ # @param user_id [String] Provide the unique identifier of the user. Alternatively, provide the users login.
2287
+ # @param [Hash] opts the optional parameters
2288
+ # @option opts [ManagementProjectsUsersUpdateRoleRequestBody] :management_projects_users_update_role_request_body Defines the users new role.
2289
+ # @return [Array<(ManagementProjectsUsersUpdateRoleResponseBody, Integer, Hash)>] ManagementProjectsUsersUpdateRoleResponseBody data, response status code and response headers
2290
+ private def update_user_with_http_info(project_id, user_id, opts = {})
2291
+ if @api_client.config.debugging
2292
+ @api_client.config.logger.debug 'Calling API: ManagementApi.update_user ...'
2293
+ end
2294
+ # resource path
2295
+ local_var_path = '/management/v1/projects/{projectId}/users/{userId}'.sub('{' + 'projectId' + '}', CGI.escape(project_id.to_s)).sub('{' + 'userId' + '}', CGI.escape(user_id.to_s))
2296
+
2297
+ # query parameters
2298
+ query_params = opts[:query_params] || {}
2299
+
2300
+ # header parameters
2301
+ header_params = opts[:header_params] || {}
2302
+ # HTTP header 'Accept' (if needed)
2303
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
2304
+ # HTTP header 'Content-Type'
2305
+ content_type = @api_client.select_header_content_type(['application/json'])
2306
+ if !content_type.nil?
2307
+ header_params['Content-Type'] = content_type
2308
+ end
2309
+
2310
+ # form parameters
2311
+ form_params = opts[:form_params] || {}
2312
+
2313
+ # http body (model)
2314
+ post_body = opts[:debug_body] || @api_client.object_to_http_body(opts[:'management_projects_users_update_role_request_body'])
2315
+
2316
+ # return_type
2317
+ return_type = opts[:debug_return_type] || 'ManagementProjectsUsersUpdateRoleResponseBody'
2318
+
2319
+ # auth_names
2320
+ auth_names = opts[:debug_auth_names] || ['X-Management-Token', 'X-Management-Id']
2321
+
2322
+ new_options = opts.merge(
2323
+ :operation => :"ManagementApi.update_user",
2324
+ :header_params => header_params,
2325
+ :query_params => query_params,
2326
+ :form_params => form_params,
2327
+ :body => post_body,
2328
+ :auth_names => auth_names,
2329
+ :return_type => return_type
2330
+ )
2331
+
2332
+ data, status_code, headers = @api_client.call_api(:PUT, local_var_path, new_options)
2333
+ if @api_client.config.debugging
2334
+ @api_client.config.logger.debug "API called: ManagementApi#update_user\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
2335
+ end
2336
+ return data, status_code, headers
2337
+ end
2338
+
2339
+ # Update Webhook
2340
+ # Updates a webhook configuration. The events listed in the request are overwritten. If you want to add more events, provide also the events that are already in the webhook configuration. 📘 Webhook Documentation Read Webhooks v2024-01-1 article to learn how webhooks work in Voucherify.
2341
+ # @param project_id [String] Provide the unique identifier of the project.
2342
+ # @param webhook_id [String] Provide the unique identifier of the webhook configuration.
2343
+ # @param [Hash] opts the optional parameters
2344
+ # @option opts [ManagementProjectsWebhooksUpdateRequestBody] :management_projects_webhooks_update_request_body Defines the webhook configuration to be updated.
2345
+ # @return [ManagementProjectsWebhooksUpdateResponseBody]
2346
+ def update_webhook(project_id, webhook_id, opts = {})
2347
+ data, _status_code, _headers = update_webhook_with_http_info(project_id, webhook_id, opts)
2348
+ data
2349
+ end
2350
+
2351
+ # Update Webhook
2352
+ # Updates a webhook configuration. The events listed in the request are overwritten. If you want to add more events, provide also the events that are already in the webhook configuration. 📘 Webhook Documentation Read Webhooks v2024-01-1 article to learn how webhooks work in Voucherify.
2353
+ # @param project_id [String] Provide the unique identifier of the project.
2354
+ # @param webhook_id [String] Provide the unique identifier of the webhook configuration.
2355
+ # @param [Hash] opts the optional parameters
2356
+ # @option opts [ManagementProjectsWebhooksUpdateRequestBody] :management_projects_webhooks_update_request_body Defines the webhook configuration to be updated.
2357
+ # @return [Array<(ManagementProjectsWebhooksUpdateResponseBody, Integer, Hash)>] ManagementProjectsWebhooksUpdateResponseBody data, response status code and response headers
2358
+ private def update_webhook_with_http_info(project_id, webhook_id, opts = {})
2359
+ if @api_client.config.debugging
2360
+ @api_client.config.logger.debug 'Calling API: ManagementApi.update_webhook ...'
2361
+ end
2362
+ # resource path
2363
+ local_var_path = '/management/v1/projects/{projectId}/webhooks/{webhookId}'.sub('{' + 'projectId' + '}', CGI.escape(project_id.to_s)).sub('{' + 'webhookId' + '}', CGI.escape(webhook_id.to_s))
2364
+
2365
+ # query parameters
2366
+ query_params = opts[:query_params] || {}
2367
+
2368
+ # header parameters
2369
+ header_params = opts[:header_params] || {}
2370
+ # HTTP header 'Accept' (if needed)
2371
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
2372
+ # HTTP header 'Content-Type'
2373
+ content_type = @api_client.select_header_content_type(['application/json'])
2374
+ if !content_type.nil?
2375
+ header_params['Content-Type'] = content_type
2376
+ end
2377
+
2378
+ # form parameters
2379
+ form_params = opts[:form_params] || {}
2380
+
2381
+ # http body (model)
2382
+ post_body = opts[:debug_body] || @api_client.object_to_http_body(opts[:'management_projects_webhooks_update_request_body'])
2383
+
2384
+ # return_type
2385
+ return_type = opts[:debug_return_type] || 'ManagementProjectsWebhooksUpdateResponseBody'
2386
+
2387
+ # auth_names
2388
+ auth_names = opts[:debug_auth_names] || ['X-Management-Token', 'X-Management-Id']
2389
+
2390
+ new_options = opts.merge(
2391
+ :operation => :"ManagementApi.update_webhook",
2392
+ :header_params => header_params,
2393
+ :query_params => query_params,
2394
+ :form_params => form_params,
2395
+ :body => post_body,
2396
+ :auth_names => auth_names,
2397
+ :return_type => return_type
2398
+ )
2399
+
2400
+ data, status_code, headers = @api_client.call_api(:PUT, local_var_path, new_options)
2401
+ if @api_client.config.debugging
2402
+ @api_client.config.logger.debug "API called: ManagementApi#update_webhook\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
2403
+ end
2404
+ return data, status_code, headers
2405
+ end
2406
+ end
2407
+ end