-
Notifications
You must be signed in to change notification settings - Fork 128
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 #836 from recurly/v3-v2021-02-25-1681256205
Generated Latest Changes for v2021-02-25 (External Accounts)
- Loading branch information
Showing
7 changed files
with
442 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# 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. | ||
module Recurly | ||
module Requests | ||
class ExternalAccountCreate < Request | ||
|
||
# @!attribute external_account_code | ||
# @return [String] Represents the account code for the external account. | ||
define_attribute :external_account_code, String | ||
|
||
# @!attribute external_connection_type | ||
# @return [String] Represents the connection type. `AppleAppStore` or `GooglePlayStore` | ||
define_attribute :external_connection_type, String | ||
end | ||
end | ||
end |
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# 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. | ||
module Recurly | ||
module Requests | ||
class ExternalAccountUpdate < Request | ||
|
||
# @!attribute external_account_code | ||
# @return [String] Represents the account code for the external account. | ||
define_attribute :external_account_code, String | ||
|
||
# @!attribute external_connection_type | ||
# @return [String] Represents the connection type. `AppleAppStore` or `GooglePlayStore` | ||
define_attribute :external_connection_type, String | ||
end | ||
end | ||
end |
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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# 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. | ||
module Recurly | ||
module Resources | ||
class ExternalAccount < Resource | ||
|
||
# @!attribute created_at | ||
# @return [DateTime] Created at | ||
define_attribute :created_at, DateTime | ||
|
||
# @!attribute external_account_code | ||
# @return [String] Represents the account code for the external account. | ||
define_attribute :external_account_code, String | ||
|
||
# @!attribute external_connection_type | ||
# @return [String] Represents the connection type. `AppleAppStore` or `GooglePlayStore` | ||
define_attribute :external_connection_type, String | ||
|
||
# @!attribute id | ||
# @return [String] UUID of the external_account . | ||
define_attribute :id, String | ||
|
||
# @!attribute object | ||
# @return [String] | ||
define_attribute :object, String | ||
|
||
# @!attribute updated_at | ||
# @return [DateTime] Last updated at | ||
define_attribute :updated_at, DateTime | ||
end | ||
end | ||
end |
Oops, something went wrong.