You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: recurly/resources.py
+13-1Lines changed: 13 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -55,6 +55,8 @@ class Address(Resource):
55
55
City
56
56
country : str
57
57
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
58
60
phone : str
59
61
Phone number
60
62
postal_code : str
@@ -70,6 +72,7 @@ class Address(Resource):
70
72
schema= {
71
73
"city": str,
72
74
"country": str,
75
+
"geo_code": str,
73
76
"phone": str,
74
77
"postal_code": str,
75
78
"region": str,
@@ -162,7 +165,7 @@ class Account(Resource):
162
165
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}`.
163
166
id : str
164
167
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.
166
169
last_name : str
167
170
object : str
168
171
Object type
@@ -241,6 +244,8 @@ class ShippingAddress(Resource):
241
244
Created at
242
245
email : str
243
246
first_name : str
247
+
geo_code : str
248
+
Code that represents a geographic entity (location or object). Only returned for Sling Vertex Integration
244
249
id : str
245
250
Shipping Address ID
246
251
last_name : str
@@ -267,6 +272,7 @@ class ShippingAddress(Resource):
267
272
"created_at": datetime,
268
273
"email": str,
269
274
"first_name": str,
275
+
"geo_code": str,
270
276
"id": str,
271
277
"last_name": str,
272
278
"nickname": str,
@@ -838,6 +844,8 @@ class AddressWithName(Resource):
838
844
Country, 2-letter ISO 3166-1 alpha-2 code.
839
845
first_name : str
840
846
First name
847
+
geo_code : str
848
+
Code that represents a geographic entity (location or object). Only returned for Sling Vertex Integration
841
849
last_name : str
842
850
Last name
843
851
phone : str
@@ -856,6 +864,7 @@ class AddressWithName(Resource):
856
864
"city": str,
857
865
"country": str,
858
866
"first_name": str,
867
+
"geo_code": str,
859
868
"last_name": str,
860
869
"phone": str,
861
870
"postal_code": str,
@@ -1520,6 +1529,8 @@ class InvoiceAddress(Resource):
1520
1529
Country, 2-letter ISO 3166-1 alpha-2 code.
1521
1530
first_name : str
1522
1531
First name
1532
+
geo_code : str
1533
+
Code that represents a geographic entity (location or object). Only returned for Sling Vertex Integration
1523
1534
last_name : str
1524
1535
Last name
1525
1536
name_on_account : str
@@ -1541,6 +1552,7 @@ class InvoiceAddress(Resource):
0 commit comments