Class: AdCenterWrapper::DayTimeInterval

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

Overview

Instance Method Summary collapse

Constructor Details

#initialize(v_begin = nil, v_end = nil) ⇒ DayTimeInterval

Returns a new instance of DayTimeInterval.



607
608
609
610
# File 'lib/adcenter_wrapper_entities.rb', line 607

def initialize(v_begin = nil, v_end = nil)
  @v_begin = v_begin
  @v_end = v_end
end

Instance Method Details

#m_beginObject



591
592
593
# File 'lib/adcenter_wrapper_entities.rb', line 591

def m_begin
  @v_begin
end

#m_begin=(value) ⇒ Object



595
596
597
# File 'lib/adcenter_wrapper_entities.rb', line 595

def m_begin=(value)
  @v_begin = value
end

#m_endObject



599
600
601
# File 'lib/adcenter_wrapper_entities.rb', line 599

def m_end
  @v_end
end

#m_end=(value) ⇒ Object



603
604
605
# File 'lib/adcenter_wrapper_entities.rb', line 603

def m_end=(value)
  @v_end = value
end