Skip to content

Commit 590eb5f

Browse files
Merge pull request #663 from recurly/v3-v2021-02-25-6786635673
Generated Latest Changes for v2021-02-25
2 parents 47ec6de + ef740f3 commit 590eb5f

File tree

2 files changed

+44
-7
lines changed

2 files changed

+44
-7
lines changed

openapi/api.yaml

Lines changed: 31 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17256,8 +17256,8 @@ components:
1725617256
type: string
1725717257
title: Invoice Template ID
1725817258
description: Unique ID to identify an invoice template. Available when
17259-
the site is on a Pro or Enterprise plan. Used to specify which invoice
17260-
template, if any, should be used to generate invoices for the account.
17259+
the site is on a Pro or Elite plan. Used to specify which invoice template,
17260+
if any, should be used to generate invoices for the account.
1726117261
address:
1726217262
"$ref": "#/components/schemas/Address"
1726317263
billing_info:
@@ -17355,10 +17355,10 @@ components:
1735517355
type: string
1735617356
title: Invoice Template ID
1735717357
description: Unique ID to identify an invoice template. Available when the
17358-
site is on a Pro or Enterprise plan. Used to specify if a non-default
17359-
invoice template will be used to generate invoices for the account. For
17360-
sites without multiple invoice templates enabled, the default template
17361-
will always be used.
17358+
site is on a Pro or Elite plan. Used to specify if a non-default invoice
17359+
template will be used to generate invoices for the account. For sites
17360+
without multiple invoice templates enabled, the default template will
17361+
always be used.
1736217362
address:
1736317363
"$ref": "#/components/schemas/Address"
1736417364
billing_info:
@@ -17511,6 +17511,11 @@ components:
1751117511
type: string
1751217512
title: Country
1751317513
description: Country, 2-letter ISO 3166-1 alpha-2 code.
17514+
geo_code:
17515+
type: string
17516+
maxLength: 20
17517+
description: Code that represents a geographic entity (location or object).
17518+
Only returned for Sling Vertex Integration
1751417519
AddressWithName:
1751517520
allOf:
1751617521
- "$ref": "#/components/schemas/Address"
@@ -18215,6 +18220,9 @@ components:
1821518220
paypal_billing_agreement_id:
1821618221
type: string
1821718222
title: PayPal billing agreement ID
18223+
roku_billing_agreement_id:
18224+
type: string
18225+
title: Roku's CIB if billing through Roku
1821818226
fraud_session_id:
1821918227
type: string
1822018228
title: Fraud Session ID
@@ -21107,6 +21115,11 @@ components:
2110721115
type: string
2110821116
maxLength: 50
2110921117
description: Country, 2-letter ISO 3166-1 alpha-2 code.
21118+
geo_code:
21119+
type: string
21120+
maxLength: 20
21121+
description: Code that represents a geographic entity (location or object).
21122+
Only returned for Sling Vertex Integration
2111021123
created_at:
2111121124
type: string
2111221125
title: Created at
@@ -21158,6 +21171,11 @@ components:
2115821171
type: string
2115921172
maxLength: 20
2116021173
description: Zip or postal code.
21174+
geo_code:
21175+
type: string
21176+
maxLength: 20
21177+
description: Code that represents a geographic entity (location or object).
21178+
Only returned for Sling Vertex Integration
2116121179
country:
2116221180
type: string
2116321181
maxLength: 50
@@ -21412,6 +21430,11 @@ components:
2141221430
type: string
2141321431
maxLength: 50
2141421432
description: Country, 2-letter ISO 3166-1 alpha-2 code.
21433+
geo_code:
21434+
type: string
21435+
maxLength: 20
21436+
description: Code that represents a geographic entity (location or object).
21437+
Only returned for Sling Vertex Integration
2141521438
Site:
2141621439
type: object
2141721440
properties:
@@ -24979,6 +25002,7 @@ components:
2497925002
- check
2498025003
- credit_card
2498125004
- eft
25005+
- google_pay
2498225006
- money_order
2498325007
- other
2498425008
- paypal
@@ -25172,6 +25196,7 @@ components:
2517225196
- credit_card
2517325197
- eft
2517425198
- gateway_token
25199+
- google_pay
2517525200
- iban_bank_account
2517625201
- money_order
2517725202
- other

recurly/resources.py

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,8 @@ class Address(Resource):
5555
City
5656
country : str
5757
Country, 2-letter ISO 3166-1 alpha-2 code.
58+
geo_code : str
59+
Code that represents a geographic entity (location or object). Only returned for Sling Vertex Integration
5860
phone : str
5961
Phone number
6062
postal_code : str
@@ -70,6 +72,7 @@ class Address(Resource):
7072
schema = {
7173
"city": str,
7274
"country": str,
75+
"geo_code": str,
7376
"phone": str,
7477
"postal_code": str,
7578
"region": str,
@@ -162,7 +165,7 @@ class Account(Resource):
162165
The unique token for automatically logging the account in to the hosted management pages. You may automatically log the user into their hosted management pages by directing the user to: `https://{subdomain}.recurly.com/account/{hosted_login_token}`.
163166
id : str
164167
invoice_template_id : str
165-
Unique ID to identify an invoice template. Available when the site is on a Pro or Enterprise plan. Used to specify if a non-default invoice template will be used to generate invoices for the account. For sites without multiple invoice templates enabled, the default template will always be used.
168+
Unique ID to identify an invoice template. Available when the site is on a Pro or Elite plan. Used to specify if a non-default invoice template will be used to generate invoices for the account. For sites without multiple invoice templates enabled, the default template will always be used.
166169
last_name : str
167170
object : str
168171
Object type
@@ -241,6 +244,8 @@ class ShippingAddress(Resource):
241244
Created at
242245
email : str
243246
first_name : str
247+
geo_code : str
248+
Code that represents a geographic entity (location or object). Only returned for Sling Vertex Integration
244249
id : str
245250
Shipping Address ID
246251
last_name : str
@@ -267,6 +272,7 @@ class ShippingAddress(Resource):
267272
"created_at": datetime,
268273
"email": str,
269274
"first_name": str,
275+
"geo_code": str,
270276
"id": str,
271277
"last_name": str,
272278
"nickname": str,
@@ -838,6 +844,8 @@ class AddressWithName(Resource):
838844
Country, 2-letter ISO 3166-1 alpha-2 code.
839845
first_name : str
840846
First name
847+
geo_code : str
848+
Code that represents a geographic entity (location or object). Only returned for Sling Vertex Integration
841849
last_name : str
842850
Last name
843851
phone : str
@@ -856,6 +864,7 @@ class AddressWithName(Resource):
856864
"city": str,
857865
"country": str,
858866
"first_name": str,
867+
"geo_code": str,
859868
"last_name": str,
860869
"phone": str,
861870
"postal_code": str,
@@ -1520,6 +1529,8 @@ class InvoiceAddress(Resource):
15201529
Country, 2-letter ISO 3166-1 alpha-2 code.
15211530
first_name : str
15221531
First name
1532+
geo_code : str
1533+
Code that represents a geographic entity (location or object). Only returned for Sling Vertex Integration
15231534
last_name : str
15241535
Last name
15251536
name_on_account : str
@@ -1541,6 +1552,7 @@ class InvoiceAddress(Resource):
15411552
"company": str,
15421553
"country": str,
15431554
"first_name": str,
1555+
"geo_code": str,
15441556
"last_name": str,
15451557
"name_on_account": str,
15461558
"phone": str,

0 commit comments

Comments
 (0)