Class: Io::Flow::V0::Models::HolidayCalendar

Inherits:
Object
  • Object
show all
Defined in:
lib/flow_commerce/flow_api_v0_client.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(value) ⇒ HolidayCalendar

Returns a new instance of HolidayCalendar.



10669
10670
10671
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 10669

def initialize(value)
  @value = HttpClient::Preconditions.assert_class('value', value, String)
end

Instance Attribute Details

#valueObject (readonly)

Returns the value of attribute value.



10667
10668
10669
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 10667

def value
  @value
end

Class Method Details

.ALLObject



10689
10690
10691
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 10689

def HolidayCalendar.ALL
  @@all ||= [HolidayCalendar.us_bank_holidays, HolidayCalendar.jewish_holidays]
end

.apply(value) ⇒ Object

Returns the instance of HolidayCalendar for this value, creating a new instance for an unknown value



10674
10675
10676
10677
10678
10679
10680
10681
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 10674

def HolidayCalendar.apply(value)
  if value.instance_of?(HolidayCalendar)
    value
  else
    HttpClient::Preconditions.assert_class_or_nil('value', value, String)
    value.nil? ? nil : (from_string(value) || HolidayCalendar.new(value))
  end
end

.from_string(value) ⇒ Object

Returns the instance of HolidayCalendar for this value, or nil if not found



10684
10685
10686
10687
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 10684

def HolidayCalendar.from_string(value)
  HttpClient::Preconditions.assert_class('value', value, String)
  HolidayCalendar.ALL.find { |v| v.value == value }
end

.jewish_holidaysObject



10697
10698
10699
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 10697

def HolidayCalendar.jewish_holidays
  @@_jewish_holidays ||= HolidayCalendar.new('jewish_holidays')
end

.us_bank_holidaysObject



10693
10694
10695
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 10693

def HolidayCalendar.us_bank_holidays
  @@_us_bank_holidays ||= HolidayCalendar.new('us_bank_holidays')
end

Instance Method Details

#to_hashObject



10701
10702
10703
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 10701

def to_hash
  value
end