Class: Seatsio::StatusChange

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data) ⇒ StatusChange

Returns a new instance of StatusChange.



591
592
593
594
595
596
597
598
599
600
601
602
603
604
# File 'lib/seatsio/domain.rb', line 591

def initialize(data)
  @id = data['id']
  @status = data['status']
  @date = DateTime.iso8601(data['date'])
  @object_label = data['objectLabel']
  @event_id = data['eventId']
  @extra_data = data['extraData']
  @origin = StatusChangeOrigin.new(data['origin'])
  @order_id = data['orderId']
  @quantity = data['quantity']
  @hold_token = data['holdToken']
  @is_present_on_chart = data['isPresentOnChart']
  @not_present_on_chart_reason = data['notPresentOnChartReason']
end

Instance Attribute Details

#dateObject (readonly)

Returns the value of attribute date.



588
589
590
# File 'lib/seatsio/domain.rb', line 588

def date
  @date
end

#event_idObject (readonly)

Returns the value of attribute event_id.



588
589
590
# File 'lib/seatsio/domain.rb', line 588

def event_id
  @event_id
end

#extra_dataObject (readonly)

Returns the value of attribute extra_data.



588
589
590
# File 'lib/seatsio/domain.rb', line 588

def extra_data
  @extra_data
end

#hold_tokenObject (readonly)

Returns the value of attribute hold_token.



588
589
590
# File 'lib/seatsio/domain.rb', line 588

def hold_token
  @hold_token
end

#idObject (readonly)

Returns the value of attribute id.



588
589
590
# File 'lib/seatsio/domain.rb', line 588

def id
  @id
end

#is_present_on_chartObject (readonly)

Returns the value of attribute is_present_on_chart.



588
589
590
# File 'lib/seatsio/domain.rb', line 588

def is_present_on_chart
  @is_present_on_chart
end

#not_present_on_chart_reasonObject (readonly)

Returns the value of attribute not_present_on_chart_reason.



588
589
590
# File 'lib/seatsio/domain.rb', line 588

def not_present_on_chart_reason
  @not_present_on_chart_reason
end

#object_labelObject (readonly)

Returns the value of attribute object_label.



588
589
590
# File 'lib/seatsio/domain.rb', line 588

def object_label
  @object_label
end

#order_idObject (readonly)

Returns the value of attribute order_id.



588
589
590
# File 'lib/seatsio/domain.rb', line 588

def order_id
  @order_id
end

#originObject (readonly)

Returns the value of attribute origin.



588
589
590
# File 'lib/seatsio/domain.rb', line 588

def origin
  @origin
end

#quantityObject (readonly)

Returns the value of attribute quantity.



588
589
590
# File 'lib/seatsio/domain.rb', line 588

def quantity
  @quantity
end

#statusObject (readonly)

Returns the value of attribute status.



588
589
590
# File 'lib/seatsio/domain.rb', line 588

def status
  @status
end