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 (Entity Use Code) #836

Merged
merged 1 commit into from
May 23, 2024
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
4 changes: 4 additions & 0 deletions Recurly/Resources/Account.cs
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,10 @@ public class Account : Resource
[JsonProperty("email")]
public string Email { get; set; }

/// <value>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.</value>
[JsonProperty("entity_use_code")]
public string EntityUseCode { get; set; }

/// <value>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.</value>
[JsonProperty("exemption_certificate")]
public string ExemptionCertificate { get; set; }
Expand Down
4 changes: 4 additions & 0 deletions Recurly/Resources/AccountCreate.cs
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,10 @@ public class AccountCreate : Request
[JsonProperty("email")]
public string Email { get; set; }

/// <value>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.</value>
[JsonProperty("entity_use_code")]
public string EntityUseCode { get; set; }

/// <value>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.</value>
[JsonProperty("exemption_certificate")]
public string ExemptionCertificate { get; set; }
Expand Down
4 changes: 4 additions & 0 deletions Recurly/Resources/AccountPurchase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,10 @@ public class AccountPurchase : Request
[JsonProperty("email")]
public string Email { get; set; }

/// <value>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.</value>
[JsonProperty("entity_use_code")]
public string EntityUseCode { get; set; }

/// <value>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.</value>
[JsonProperty("exemption_certificate")]
public string ExemptionCertificate { get; set; }
Expand Down
4 changes: 4 additions & 0 deletions Recurly/Resources/AccountUpdate.cs
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,10 @@ public class AccountUpdate : Request
[JsonProperty("email")]
public string Email { get; set; }

/// <value>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.</value>
[JsonProperty("entity_use_code")]
public string EntityUseCode { get; set; }

/// <value>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.</value>
[JsonProperty("exemption_certificate")]
public string ExemptionCertificate { get; set; }
Expand Down
10 changes: 10 additions & 0 deletions openapi/api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17474,6 +17474,11 @@ components:
"$ref": "#/components/schemas/BillingInfoCreate"
custom_fields:
"$ref": "#/components/schemas/CustomFields"
entity_use_code:
type: string
description: 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.
AccountResponse:
type: object
properties:
Expand Down Expand Up @@ -17575,6 +17580,11 @@ components:
"$ref": "#/components/schemas/BillingInfo"
custom_fields:
"$ref": "#/components/schemas/CustomFields"
entity_use_code:
type: string
description: 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.
AccountNote:
type: object
required:
Expand Down
Loading