Class: Seatsio::RemoveTicketBuyerIdsResult
- Inherits:
-
Object
- Object
- Seatsio::RemoveTicketBuyerIdsResult
- Defined in:
- lib/seatsio/ticket_buyers.rb
Instance Attribute Summary collapse
-
#not_present ⇒ Object
readonly
Returns the value of attribute not_present.
-
#removed ⇒ Object
readonly
Returns the value of attribute removed.
Instance Method Summary collapse
-
#initialize(data) ⇒ RemoveTicketBuyerIdsResult
constructor
A new instance of RemoveTicketBuyerIdsResult.
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_present ⇒ Object (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 |
#removed ⇒ Object (readonly)
Returns the value of attribute removed.
43 44 45 |
# File 'lib/seatsio/ticket_buyers.rb', line 43 def removed @removed end |