Class: Seatsio::RemoveTicketBuyerIdsResult

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data) ⇒ RemoveTicketBuyerIdsResult

Returns a new instance of RemoveTicketBuyerIdsResult.



45
46
47
48
# File 'lib/seatsio/ticket_buyers.rb', line 45

def initialize(data)
  @removed = data['removed']
  @not_present = data['notPresent']
end

Instance Attribute Details

#not_presentObject (readonly)

Returns the value of attribute not_present.



43
44
45
# File 'lib/seatsio/ticket_buyers.rb', line 43

def not_present
  @not_present
end

#removedObject (readonly)

Returns the value of attribute removed.



43
44
45
# File 'lib/seatsio/ticket_buyers.rb', line 43

def removed
  @removed
end