Class: Lithic::Models::AuthRules::VelocityLimitPeriod::FixedWindowYear

Inherits:
Internal::Type::BaseModel show all
Defined in:
lib/lithic/models/auth_rules/velocity_limit_period.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

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(day_of_month: nil, month: nil, type: :YEAR) ⇒ Object

Some parameter documentations has been truncated, see Lithic::Models::AuthRules::VelocityLimitPeriod::FixedWindowYear for more details.

Velocity over the current year since 00:00 / 12 AM in Eastern Time on specified ‘month` and `day_of_month`. This validates the month and day of the year to start from is a real date. In the event that February 29th is selected, in non-leap years, the window will start from February 28th.

Parameters:

  • day_of_month (Integer) (defaults to: nil)

    The day of the month to start from. Defaults to the 1st of the month if not spec

  • month (Integer) (defaults to: nil)

    The month to start from. 1 is January and 12 is December. Defaults to January if

  • type (Symbol, :YEAR) (defaults to: :YEAR)


# File 'lib/lithic/models/auth_rules/velocity_limit_period.rb', line 132

Instance Attribute Details

#day_of_monthInteger?

The day of the month to start from. Defaults to the 1st of the month if not specified.

Returns:

  • (Integer, nil)


123
# File 'lib/lithic/models/auth_rules/velocity_limit_period.rb', line 123

optional :day_of_month, Integer

#monthInteger?

The month to start from. 1 is January and 12 is December. Defaults to January if not specified.

Returns:

  • (Integer, nil)


130
# File 'lib/lithic/models/auth_rules/velocity_limit_period.rb', line 130

optional :month, Integer

#typeSymbol, :YEAR

Returns:

  • (Symbol, :YEAR)


116
# File 'lib/lithic/models/auth_rules/velocity_limit_period.rb', line 116

required :type, const: :YEAR