-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Generated Latest Changes for v2021-02-25
- Loading branch information
Recurly Integrations
authored
Dec 14, 2024
1 parent
7d8b61c
commit b94e273
Showing
21 changed files
with
900 additions
and
32 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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
/** | ||
* 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. | ||
*/ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Diagnostics.CodeAnalysis; | ||
using Newtonsoft.Json; | ||
|
||
namespace Recurly.Resources | ||
{ | ||
[ExcludeFromCodeCoverage] | ||
public class AccountExternalSubscription : Request | ||
{ | ||
|
||
/// <value>The account code of a new or existing account to be used when creating the external subscription.</value> | ||
[JsonProperty("account_code")] | ||
public string AccountCode { get; set; } | ||
|
||
} | ||
} |
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,35 @@ | ||
/** | ||
* 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. | ||
*/ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Diagnostics.CodeAnalysis; | ||
using Newtonsoft.Json; | ||
|
||
namespace Recurly.Resources | ||
{ | ||
[ExcludeFromCodeCoverage] | ||
public class BusinessEntityMini : Resource | ||
{ | ||
|
||
/// <value>The entity code of the business entity.</value> | ||
[JsonProperty("code")] | ||
public string Code { get; set; } | ||
|
||
/// <value>Business entity ID</value> | ||
[JsonProperty("id")] | ||
public string Id { get; set; } | ||
|
||
/// <value>This name describes your business entity and will appear on the invoice.</value> | ||
[JsonProperty("name")] | ||
public string Name { get; set; } | ||
|
||
/// <value>Object type</value> | ||
[JsonProperty("object")] | ||
public string Object { get; set; } | ||
|
||
} | ||
} |
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
19 changes: 19 additions & 0 deletions
19
Recurly/Resources/ExternalProductReferenceConnectionType.cs
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,19 @@ | ||
/** | ||
* 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. | ||
*/ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Diagnostics.CodeAnalysis; | ||
using Newtonsoft.Json; | ||
|
||
namespace Recurly.Resources | ||
{ | ||
[ExcludeFromCodeCoverage] | ||
public class ExternalProductReferenceConnectionType : Request | ||
{ | ||
|
||
} | ||
} |
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,27 @@ | ||
/** | ||
* 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. | ||
*/ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Diagnostics.CodeAnalysis; | ||
using Newtonsoft.Json; | ||
|
||
namespace Recurly.Resources | ||
{ | ||
[ExcludeFromCodeCoverage] | ||
public class ExternalProductReferenceUpdate : Request | ||
{ | ||
|
||
/// <value>Represents the connection type. One of the connection types of your enabled App Connectors</value> | ||
[JsonProperty("external_connection_type")] | ||
public ExternalProductReferenceConnectionType ExternalConnectionType { get; set; } | ||
|
||
/// <value>A code which associates the external product to a corresponding object or resource in an external platform like the Apple App Store or Google Play Store.</value> | ||
[JsonProperty("reference_code")] | ||
public string ReferenceCode { get; set; } | ||
|
||
} | ||
} |
Oops, something went wrong.