Skip to content

Commit d7614e9

Browse files
authored
Merge pull request #693 from recurly/v3-v2021-02-25-9213342136
Generated Latest Changes for v2021-02-25 (Entity Use Code)
2 parents fd02772 + 3c0d74f commit d7614e9

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

openapi/api.yaml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17474,6 +17474,11 @@ components:
1747417474
"$ref": "#/components/schemas/BillingInfoCreate"
1747517475
custom_fields:
1747617476
"$ref": "#/components/schemas/CustomFields"
17477+
entity_use_code:
17478+
type: string
17479+
description: The Avalara AvaTax value that can be passed to identify the
17480+
customer type for tax purposes. The range of values can be A - R (more
17481+
info at Avalara). Value is case-sensitive.
1747717482
AccountResponse:
1747817483
type: object
1747917484
properties:
@@ -17575,6 +17580,11 @@ components:
1757517580
"$ref": "#/components/schemas/BillingInfo"
1757617581
custom_fields:
1757717582
"$ref": "#/components/schemas/CustomFields"
17583+
entity_use_code:
17584+
type: string
17585+
description: The Avalara AvaTax value that can be passed to identify the
17586+
customer type for tax purposes. The range of values can be A - R (more
17587+
info at Avalara). Value is case-sensitive.
1757817588
AccountNote:
1757917589
type: object
1758017590
required:

recurly/resources.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,8 @@ class Account(Resource):
144144
Unique ID to identify a dunning campaign. Used to specify if a non-default dunning campaign should be assigned to this account. For sites without multiple dunning campaigns enabled, the default dunning campaign will always be used.
145145
email : str
146146
The email address used for communicating with this customer. The customer will also use this email address to log into your hosted account management pages. This value does not need to be unique.
147+
entity_use_code : str
148+
The Avalara AvaTax value that can be passed to identify the customer type for tax purposes. The range of values can be A - R (more info at Avalara). Value is case-sensitive.
147149
exemption_certificate : str
148150
The tax exemption certificate number for the account. If the merchant has an integration for the Vertex tax provider, this optional value will be sent in any tax calculation requests for the account.
149151
external_accounts : :obj:`list` of :obj:`ExternalAccount`
@@ -203,6 +205,7 @@ class Account(Resource):
203205
"deleted_at": datetime,
204206
"dunning_campaign_id": str,
205207
"email": str,
208+
"entity_use_code": str,
206209
"exemption_certificate": str,
207210
"external_accounts": ["ExternalAccount"],
208211
"first_name": str,

0 commit comments

Comments
 (0)