From 6b5fa687e0ca8f9cb56bbc90cc971e40ae65644e Mon Sep 17 00:00:00 2001 From: DX Codefresh Date: Thu, 8 Sep 2022 22:39:28 +0000 Subject: [PATCH] Generated Latest Changes for v2021-02-25 --- openapi/api.yaml | 4 +++- recurly/resources.py | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/openapi/api.yaml b/openapi/api.yaml index e01a1ad7..93513e36 100644 --- a/openapi/api.yaml +++ b/openapi/api.yaml @@ -21302,7 +21302,9 @@ components: type: integer description: Represents how many billing cycles are left in a ramp interval. unit_amount: - type: integer + type: number + format: float + title: Unit price description: Represents the price for the ramp interval. TaxInfo: type: object diff --git a/recurly/resources.py b/recurly/resources.py index df777f92..cbd93cd0 100644 --- a/recurly/resources.py +++ b/recurly/resources.py @@ -2060,14 +2060,14 @@ class SubscriptionRampIntervalResponse(Resource): Represents how many billing cycles are left in a ramp interval. starting_billing_cycle : int Represents the billing cycle where a ramp interval starts. - unit_amount : int + unit_amount : float Represents the price for the ramp interval. """ schema = { "remaining_billing_cycles": int, "starting_billing_cycle": int, - "unit_amount": int, + "unit_amount": float, }