Class: Seatsio::AddTicketBuyerIdsResult

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data) ⇒ AddTicketBuyerIdsResult

Returns a new instance of AddTicketBuyerIdsResult.



35
36
37
38
# File 'lib/seatsio/ticket_buyers.rb', line 35

def initialize(data)
  @added = data['added']
  @already_present = data['alreadyPresent']
end

Instance Attribute Details

#addedObject (readonly)

Returns the value of attribute added.



33
34
35
# File 'lib/seatsio/ticket_buyers.rb', line 33

def added
  @added
end

#already_presentObject (readonly)

Returns the value of attribute already_present.



33
34
35
# File 'lib/seatsio/ticket_buyers.rb', line 33

def already_present
  @already_present
end