Skip to content

Commit

Permalink
Merge pull request #914 from recurly/v3-v2021-02-25-10583286844
Browse files Browse the repository at this point in the history
Generated Latest Changes for v2021-02-25 (add UUID to external subscriptions)
  • Loading branch information
amandamfielding authored Aug 27, 2024
2 parents cfdf1f5 + 3657a7f commit 6f73fa1
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/recurly/client/operations.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2403,7 +2403,7 @@ def list_external_subscriptions(**options)
#
# {https://developers.recurly.com/api/v2021-02-25#operation/get_external_subscription get_external_subscription api documentation}
#
# @param external_subscription_id [String] External subscription ID or external_id. For ID no prefix is used e.g. +e28zov4fw0v2+. For external_id use prefix +external-id-+, e.g. +external-id-123456+.
# @param external_subscription_id [String] External subscription ID, external_id or uuid. For ID no prefix is used e.g. +e28zov4fw0v2+. For external_id use prefix +external-id-+, e.g. +external-id-123456+ and for uuid use prefix +uuid-+ e.g. +uuid-7293239bae62777d8c1ae044a9843633+.
# @param params [Hash] Optional query string parameters:
#
# @return [Resources::ExternalSubscription] Settings for an external subscription.
Expand Down
4 changes: 4 additions & 0 deletions lib/recurly/resources/external_subscription.rb
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,10 @@ class ExternalSubscription < Resource
# @!attribute updated_at
# @return [DateTime] When the external subscription was updated in Recurly.
define_attribute :updated_at, DateTime

# @!attribute uuid
# @return [String] Universally Unique Identifier created automatically.
define_attribute :uuid, String
end
end
end
9 changes: 7 additions & 2 deletions openapi/api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16743,8 +16743,9 @@ components:
external_subscription_id_fetch:
name: external_subscription_id
in: path
description: External subscription ID or external_id. For ID no prefix is used
e.g. `e28zov4fw0v2`. For external_id use prefix `external-id-`, e.g. `external-id-123456`.
description: External subscription ID, external_id or uuid. For ID no prefix
is used e.g. `e28zov4fw0v2`. For external_id use prefix `external-id-`, e.g.
`external-id-123456` and for uuid use prefix `uuid-` e.g. `uuid-7293239bae62777d8c1ae044a9843633`.
required: true
schema:
type: string
Expand Down Expand Up @@ -25100,6 +25101,10 @@ components:
title: External Id
description: The id of the subscription in the external systems., I.e. Apple
App Store or Google Play Store.
uuid:
type: string
title: Uuid
description: Universally Unique Identifier created automatically.
last_purchased:
type: string
format: date-time
Expand Down

0 comments on commit 6f73fa1

Please sign in to comment.