Class: Lithic::Models::AuthRules::ConditionalACHActionParameters::Condition
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Lithic::Models::AuthRules::ConditionalACHActionParameters::Condition
- Defined in:
- lib/lithic/models/auth_rules/conditional_ach_action_parameters.rb
Defined Under Namespace
Modules: Attribute
Instance Attribute Summary collapse
-
#attribute ⇒ Symbol, Lithic::Models::AuthRules::ConditionalACHActionParameters::Condition::Attribute
The attribute to target.
-
#operation ⇒ Symbol, Lithic::Models::AuthRules::ConditionalOperation
The operation to apply to the attribute.
-
#value ⇒ String, ...
A regex string, to be used with ‘MATCHES` or `DOES_NOT_MATCH`.
Instance Method Summary collapse
-
#initialize(attribute:, operation:, value:) ⇒ Object
constructor
Some parameter documentations has been truncated, see Condition for more details.
Methods inherited from Internal::Type::BaseModel
==, #==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, 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
#initialize(attribute:, operation:, value:) ⇒ Object
Some parameter documentations has been truncated, see Lithic::Models::AuthRules::ConditionalACHActionParameters::Condition for more details.
|
|
# File 'lib/lithic/models/auth_rules/conditional_ach_action_parameters.rb', line 215
|
Instance Attribute Details
#attribute ⇒ Symbol, Lithic::Models::AuthRules::ConditionalACHActionParameters::Condition::Attribute
The attribute to target.
The following attributes may be targeted:
-
‘COMPANY_NAME`: The name of the company initiating the ACH transaction.
-
‘COMPANY_ID`: The company ID (also known as Standard Entry Class (SEC) Company ID) of the entity initiating the ACH transaction.
-
‘TIMESTAMP`: The timestamp of the ACH transaction in ISO 8601 format.
-
‘TRANSACTION_AMOUNT`: The amount of the ACH transaction in minor units (cents).
-
‘SEC_CODE`: Standard Entry Class code indicating the type of ACH transaction. Valid values include PPD (Prearranged Payment and Deposit Entry), CCD (Corporate Credit or Debit Entry), WEB (Internet-Initiated/Mobile Entry), TEL (Telephone-Initiated Entry), and others.
-
‘MEMO`: Optional memo or description field included with the ACH transaction.
201 |
# File 'lib/lithic/models/auth_rules/conditional_ach_action_parameters.rb', line 201 required :attribute, enum: -> { Lithic::AuthRules::ConditionalACHActionParameters::Condition::Attribute } |
#operation ⇒ Symbol, Lithic::Models::AuthRules::ConditionalOperation
The operation to apply to the attribute
207 |
# File 'lib/lithic/models/auth_rules/conditional_ach_action_parameters.rb', line 207 required :operation, enum: -> { Lithic::AuthRules::ConditionalOperation } |
#value ⇒ String, ...
A regex string, to be used with ‘MATCHES` or `DOES_NOT_MATCH`
213 |
# File 'lib/lithic/models/auth_rules/conditional_ach_action_parameters.rb', line 213 required :value, union: -> { Lithic::AuthRules::ConditionalValue } |