Skip to content

Commit

Permalink
Merge pull request #634 from recurly/v3-v2021-02-25-1680632114
Browse files Browse the repository at this point in the history
Generated Latest Changes for v2021-02-25
  • Loading branch information
amandamfielding authored Apr 5, 2023
2 parents fad1b3c + 05be4b7 commit c16ca58
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 8 deletions.
11 changes: 7 additions & 4 deletions openapi/api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17604,6 +17604,9 @@ components:
title: Security code or CVV
description: "*STRONGLY RECOMMENDED*"
maxLength: 4
currency:
type: string
description: 3-letter ISO 4217 currency code.
vat_number:
type: string
title: VAT number
Expand Down Expand Up @@ -23089,8 +23092,8 @@ components:
state:
"$ref": "#/components/schemas/ExternalInvoiceStateEnum"
total:
type: number
format: float
type: string
format: decimal
title: Total
currency:
type: string
Expand Down Expand Up @@ -23150,8 +23153,8 @@ components:
title: Currency
description: 3-letter ISO 4217 currency code.
unit_amount:
type: number
format: float
type: string
format: decimal
title: Unit Amount
quantity:
type: integer
Expand Down
8 changes: 4 additions & 4 deletions recurly/resources.py
Original file line number Diff line number Diff line change
Expand Up @@ -1145,7 +1145,7 @@ class ExternalInvoice(Resource):
purchased_at : datetime
When the invoice was created in the external platform.
state : str
total : float
total : str
Total
updated_at : datetime
When the external invoice was updated in Recurly.
Expand All @@ -1162,7 +1162,7 @@ class ExternalInvoice(Resource):
"object": str,
"purchased_at": datetime,
"state": str,
"total": float,
"total": str,
"updated_at": datetime,
}

Expand Down Expand Up @@ -1265,7 +1265,7 @@ class ExternalCharge(Resource):
object : str
Object type
quantity : int
unit_amount : float
unit_amount : str
Unit Amount
updated_at : datetime
When the external charge was updated in Recurly.
Expand All @@ -1280,7 +1280,7 @@ class ExternalCharge(Resource):
"id": str,
"object": str,
"quantity": int,
"unit_amount": float,
"unit_amount": str,
"updated_at": datetime,
}

Expand Down

0 comments on commit c16ca58

Please sign in to comment.