Class: Lithic::Models::AuthRules::VelocityLimitParams::Filters
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Lithic::Models::AuthRules::VelocityLimitParams::Filters
- Defined in:
- lib/lithic/models/auth_rules/velocity_limit_params.rb
Overview
Defined Under Namespace
Modules: IncludePanEntryMode
Instance Attribute Summary collapse
-
#exclude_countries ⇒ Array<String>?
ISO-3166-1 alpha-3 Country Codes to exclude from the velocity calculation.
-
#exclude_mccs ⇒ Array<String>?
Merchant Category Codes to exclude from the velocity calculation.
-
#include_countries ⇒ Array<String>?
ISO-3166-1 alpha-3 Country Codes to include in the velocity calculation.
-
#include_mccs ⇒ Array<String>?
Merchant Category Codes to include in the velocity calculation.
-
#include_pan_entry_modes ⇒ Array<Symbol, Lithic::Models::AuthRules::VelocityLimitParams::Filters::IncludePanEntryMode>?
PAN entry modes to include in the velocity calculation.
Method Summary
Methods inherited from Internal::Type::BaseModel
#==, ==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, #initialize, inspect, #inspect, known_fields, optional, recursively_to_h, required, #to_h, #to_json, #to_s, to_sorbet_type, #to_yaml
Methods included from Internal::Type::Converter
#coerce, coerce, #dump, dump, inspect, #inspect, meta_info, new_coerce_state, type_info
Methods included from Internal::Util::SorbetRuntimeSupport
#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type
Constructor Details
This class inherits a constructor from Lithic::Internal::Type::BaseModel
Instance Attribute Details
#exclude_countries ⇒ Array<String>?
ISO-3166-1 alpha-3 Country Codes to exclude from the velocity calculation. Transactions matching any of the provided will be excluded from the calculated velocity.
64 |
# File 'lib/lithic/models/auth_rules/velocity_limit_params.rb', line 64 optional :exclude_countries, Lithic::Internal::Type::ArrayOf[String], nil?: true |
#exclude_mccs ⇒ Array<String>?
Merchant Category Codes to exclude from the velocity calculation. Transactions matching this MCC will be excluded from the calculated velocity.
71 |
# File 'lib/lithic/models/auth_rules/velocity_limit_params.rb', line 71 optional :exclude_mccs, Lithic::Internal::Type::ArrayOf[String], nil?: true |
#include_countries ⇒ Array<String>?
ISO-3166-1 alpha-3 Country Codes to include in the velocity calculation. Transactions not matching any of the provided will not be included in the calculated velocity.
79 |
# File 'lib/lithic/models/auth_rules/velocity_limit_params.rb', line 79 optional :include_countries, Lithic::Internal::Type::ArrayOf[String], nil?: true |
#include_mccs ⇒ Array<String>?
Merchant Category Codes to include in the velocity calculation. Transactions not matching this MCC will not be included in the calculated velocity.
86 |
# File 'lib/lithic/models/auth_rules/velocity_limit_params.rb', line 86 optional :include_mccs, Lithic::Internal::Type::ArrayOf[String], nil?: true |
#include_pan_entry_modes ⇒ Array<Symbol, Lithic::Models::AuthRules::VelocityLimitParams::Filters::IncludePanEntryMode>?
PAN entry modes to include in the velocity calculation. Transactions not matching any of the provided will not be included in the calculated velocity.
93 94 95 96 97 |
# File 'lib/lithic/models/auth_rules/velocity_limit_params.rb', line 93 optional :include_pan_entry_modes, -> { Lithic::Internal::Type::ArrayOf[enum: Lithic::AuthRules::VelocityLimitParams::Filters::IncludePanEntryMode] }, nil?: true |