-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #291 from recurly/v3-v2019-10-10-1674151097
Generated Latest Changes for v2019-10-10 (Custom Fields on Line Items)
- Loading branch information
Showing
5 changed files
with
37 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -686,6 +686,7 @@ paths: | |
code: accountCode, | ||
firstName: 'Benjamin', | ||
lastName: 'Du Monde', | ||
preferredTimeZone: 'America/Chicago', | ||
address: { | ||
street1: '900 Camp St', | ||
city: 'New Orleans', | ||
|
@@ -714,6 +715,7 @@ paths: | |
"code": account_code, | ||
"first_name": "Benjamin", | ||
"last_name": "Du Monde", | ||
"preferred_time_zone": "America/Chicago", | ||
"acquisition": { | ||
"campaign": "podcast-marketing", | ||
"channel": "social_media", | ||
|
@@ -749,6 +751,7 @@ paths: | |
Code = accountCode, | ||
FirstName = "Benjamin", | ||
LastName = "Du Monde", | ||
PreferredTimeZone = "America/Chicago", | ||
Address = new Address() | ||
{ | ||
City = "New Orleans", | ||
|
@@ -779,6 +782,7 @@ paths: | |
code: account_code, | ||
first_name: "Benjamin", | ||
last_name: "Du Monde", | ||
preferred_time_zone: "America/Chicago", | ||
acquisition: { | ||
campaign: "podcast-marketing", | ||
channel: "social_media", | ||
|
@@ -817,6 +821,7 @@ paths: | |
accountReq.setCode(accountCode); | ||
accountReq.setFirstName("Aaron"); | ||
accountReq.setLastName("Du Monde"); | ||
accountReq.setPreferredTimeZone("America/Chicago"); | ||
|
||
address.setStreet1("900 Camp St."); | ||
address.setCity("New Orleans"); | ||
|
@@ -843,6 +848,7 @@ paths: | |
"code" => $account_code, | ||
"first_name" => "Douglas", | ||
"last_name" => "DuMonde", | ||
"preferred_time_zone" => "America/Chicago", | ||
"shipping_addresses" => [ | ||
[ | ||
"first_name" => "Douglas", | ||
|
@@ -872,17 +878,17 @@ paths: | |
- lang: Go | ||
source: "accountReq := &recurly.AccountCreate{\n\tCode: &accountCode,\n\tFirstName: | ||
recurly.String(\"Isaac\"),\n\tLastName: recurly.String(\"Du Monde\"),\n\tEmail: | ||
\ recurly.String(\"[email protected]\"),\n\tBillingInfo: &recurly.BillingInfoCreate{\n\t\tFirstName: | ||
recurly.String(\"Isaac\"),\n\t\tLastName: recurly.String(\"Du Monde\"),\n\t\tAddress: | ||
&recurly.AddressCreate{\n\t\t\tPhone: recurly.String(\"415-555-5555\"),\n\t\t\tStreet1: | ||
\ recurly.String(\"400 Alabama St.\"),\n\t\t\tCity: recurly.String(\"San | ||
Francisco\"),\n\t\t\tPostalCode: recurly.String(\"94110\"),\n\t\t\tCountry: | ||
\ recurly.String(\"US\"),\n\t\t\tRegion: recurly.String(\"CA\"),\n\t\t},\n\t\tNumber: | ||
recurly.String(\"4111111111111111\"),\n\t\tMonth: recurly.String(\"12\"),\n\t\tYear: | ||
\ recurly.String(\"22\"),\n\t\tCvv: recurly.String(\"123\"),\n\t},\n}\n\naccount, | ||
err := client.CreateAccount(accountReq)\nif e, ok := err.(*recurly.Error); | ||
ok {\n\tif e.Type == recurly.ErrorTypeValidation {\n\t\tfmt.Printf(\"Failed | ||
validation: %v\", e)\n\t\treturn nil, err\n\t}\n\tfmt.Printf(\"Unexpected | ||
\ recurly.String(\"[email protected]\"),\n\tPreferredTimeZone: recurly.String(\"America/Los_Angeles\"),\n\tBillingInfo: | ||
&recurly.BillingInfoCreate{\n\t\tFirstName: recurly.String(\"Isaac\"),\n\t\tLastName: | ||
\ recurly.String(\"Du Monde\"),\n\t\tAddress: &recurly.AddressCreate{\n\t\t\tPhone: | ||
\ recurly.String(\"415-555-5555\"),\n\t\t\tStreet1: recurly.String(\"400 | ||
Alabama St.\"),\n\t\t\tCity: recurly.String(\"San Francisco\"),\n\t\t\tPostalCode: | ||
recurly.String(\"94110\"),\n\t\t\tCountry: recurly.String(\"US\"),\n\t\t\tRegion: | ||
\ recurly.String(\"CA\"),\n\t\t},\n\t\tNumber: recurly.String(\"4111111111111111\"),\n\t\tMonth: | ||
\ recurly.String(\"12\"),\n\t\tYear: recurly.String(\"22\"),\n\t\tCvv: | ||
\ recurly.String(\"123\"),\n\t},\n}\n\naccount, err := client.CreateAccount(accountReq)\nif | ||
e, ok := err.(*recurly.Error); ok {\n\tif e.Type == recurly.ErrorTypeValidation | ||
{\n\t\tfmt.Printf(\"Failed validation: %v\", e)\n\t\treturn nil, err\n\t}\n\tfmt.Printf(\"Unexpected | ||
Recurly error: %v\", e)\n\treturn nil, err\n}\nfmt.Printf(\"Created Account: | ||
%s\", account.Id)" | ||
"/sites/{site_id}/accounts/{account_id}": | ||
|
@@ -6175,6 +6181,7 @@ paths: | |
- item | ||
- plan | ||
- subscription | ||
- charge | ||
responses: | ||
'200': | ||
description: A list of the site's custom field definitions. | ||
|
@@ -17444,6 +17451,7 @@ components: | |
- item | ||
- plan | ||
- subscription | ||
- charge | ||
name: | ||
type: string | ||
title: Name | ||
|
@@ -18696,6 +18704,8 @@ components: | |
format: date-time | ||
title: End date | ||
description: If this date is provided, it indicates the end of a time range. | ||
custom_fields: | ||
"$ref": "#/components/schemas/CustomFields" | ||
created_at: | ||
type: string | ||
format: date-time | ||
|
@@ -18890,6 +18900,8 @@ components: | |
format: date-time | ||
title: End date | ||
description: If this date is provided, it indicates the end of a time range. | ||
custom_fields: | ||
"$ref": "#/components/schemas/CustomFields" | ||
required: | ||
- currency | ||
- unit_amount | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.