-
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.
Merge pull request #812 from recurly/v3-v2021-02-25-7561215547
Generated Latest Changes for v2021-02-25
- Loading branch information
Showing
11 changed files
with
185 additions
and
38 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
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 FraudRiskRule : Resource | ||
{ | ||
|
||
/// <value>The Kount rule number.</value> | ||
[JsonProperty("code")] | ||
public string Code { get; set; } | ||
|
||
/// <value>Description of why the rule was triggered</value> | ||
[JsonProperty("message")] | ||
public string Message { 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
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
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,40 @@ | ||
/** | ||
* 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 TransactionFraudInfo : Resource | ||
{ | ||
|
||
/// <value>Kount decision</value> | ||
[JsonProperty("decision")] | ||
[JsonConverter(typeof(RecurlyStringEnumConverter))] | ||
public Constants.KountDecision? Decision { get; set; } | ||
|
||
/// <value>Object type</value> | ||
[JsonProperty("object")] | ||
public string Object { get; set; } | ||
|
||
/// <value>Kount transaction reference ID</value> | ||
[JsonProperty("reference")] | ||
public string Reference { get; set; } | ||
|
||
/// <value>A list of fraud risk rules that were triggered for the transaction.</value> | ||
[JsonProperty("risk_rules_triggered")] | ||
public List<FraudRiskRule> RiskRulesTriggered { get; set; } | ||
|
||
/// <value>Kount score</value> | ||
[JsonProperty("score")] | ||
public int? Score { get; set; } | ||
|
||
} | ||
} |
Oops, something went wrong.