-
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.
Generated Latest Changes for v2021-02-25
- Loading branch information
Recurly Integrations
authored
Jan 17, 2024
1 parent
727b9c5
commit f4b5943
Showing
11 changed files
with
135 additions
and
26 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
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 Resources | ||
class FraudRiskRule < Resource | ||
|
||
# @!attribute code | ||
# @return [String] The Kount rule number. | ||
define_attribute :code, String | ||
|
||
# @!attribute message | ||
# @return [String] Description of why the rule was triggered | ||
define_attribute :message, 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
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,30 @@ | ||
# 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 TransactionFraudInfo < Resource | ||
|
||
# @!attribute decision | ||
# @return [String] Kount decision | ||
define_attribute :decision, String | ||
|
||
# @!attribute object | ||
# @return [String] Object type | ||
define_attribute :object, String | ||
|
||
# @!attribute reference | ||
# @return [String] Kount transaction reference ID | ||
define_attribute :reference, String | ||
|
||
# @!attribute risk_rules_triggered | ||
# @return [Array[FraudRiskRule]] A list of fraud risk rules that were triggered for the transaction. | ||
define_attribute :risk_rules_triggered, Array, { :item_type => :FraudRiskRule } | ||
|
||
# @!attribute score | ||
# @return [Integer] Kount score | ||
define_attribute :score, Integer | ||
end | ||
end | ||
end |
Oops, something went wrong.