Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Generated Latest Changes for v2021-02-25 #634

Merged
merged 1 commit into from
Apr 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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