-
Notifications
You must be signed in to change notification settings - Fork 9
/
account_update.go
71 lines (47 loc) · 4.89 KB
/
account_update.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
// This file is automatically created by Recurly's OpenAPI generation process
// and thus any edits you make by hand will be lost. If you wish to make a
// change to this file, please create a Github issue explaining the changes you
// need and we will usher them to the appropriate places.
package recurly
import ()
type AccountUpdate struct {
// A secondary value for the account.
Username *string `json:"username,omitempty"`
// 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.
Email *string `json:"email,omitempty"`
// Used to determine the language and locale of emails sent on behalf of the merchant to the customer. The list of locales is restricted to those the merchant has enabled on the site.
PreferredLocale *string `json:"preferred_locale,omitempty"`
// Used to determine the time zone of emails sent on behalf of the merchant to the customer. Must be a [supported IANA time zone name](https://docs.recurly.com/docs/email-time-zones-and-time-stamps#supported-api-iana-time-zone-names)
PreferredTimeZone *string `json:"preferred_time_zone,omitempty"`
// Additional email address that should receive account correspondence. These should be separated only by commas. These CC emails will receive all emails that the `email` field also receives.
CcEmails *string `json:"cc_emails,omitempty"`
FirstName *string `json:"first_name,omitempty"`
LastName *string `json:"last_name,omitempty"`
Company *string `json:"company,omitempty"`
// The VAT number of the account (to avoid having the VAT applied). This is only used for manually collected invoices.
VatNumber *string `json:"vat_number,omitempty"`
// The tax status of the account. `true` exempts tax on the account, `false` applies tax on the account.
TaxExempt *bool `json:"tax_exempt,omitempty"`
// 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.
ExemptionCertificate *string `json:"exemption_certificate,omitempty"`
// Unique ID to identify the business entity assigned to the account. Available when the `Multiple Business Entities` feature is enabled.
OverrideBusinessEntityId *string `json:"override_business_entity_id,omitempty"`
// The account code of the parent account to be associated with this account. Passing an empty value removes any existing parent association from this account. If both `parent_account_code` and `parent_account_id` are passed, the non-blank value in `parent_account_id` will be used. Only one level of parent child relationship is allowed. You cannot assign a parent account that itself has a parent account.
ParentAccountCode *string `json:"parent_account_code,omitempty"`
// The UUID of the parent account to be associated with this account. Passing an empty value removes any existing parent association from this account. If both `parent_account_code` and `parent_account_id` are passed, the non-blank value in `parent_account_id` will be used. Only one level of parent child relationship is allowed. You cannot assign a parent account that itself has a parent account.
ParentAccountId *string `json:"parent_account_id,omitempty"`
// An enumerable describing the billing behavior of the account, specifically whether the account is self-paying or will rely on the parent account to pay.
BillTo *string `json:"bill_to,omitempty"`
// An optional type designation for the payment gateway transaction created by this request. Supports 'moto' value, which is the acronym for mail order and telephone transactions.
TransactionType *string `json:"transaction_type,omitempty"`
// 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.
DunningCampaignId *string `json:"dunning_campaign_id,omitempty"`
// Unique ID to identify an invoice template. Available when the site is on a Pro or Elite plan. Used to specify which invoice template, if any, should be used to generate invoices for the account.
InvoiceTemplateId *string `json:"invoice_template_id,omitempty"`
Address *AddressCreate `json:"address,omitempty"`
BillingInfo *BillingInfoCreate `json:"billing_info,omitempty"`
// The custom fields will only be altered when they are included in a request. Sending an empty array will not remove any existing values. To remove a field send the name with a null or empty value.
CustomFields []CustomFieldCreate `json:"custom_fields,omitempty"`
// 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.
EntityUseCode *string `json:"entity_use_code,omitempty"`
}