Class: Seatsio::AddTicketBuyerIdsResult
- Inherits:
-
Object
- Object
- Seatsio::AddTicketBuyerIdsResult
- Defined in:
- lib/seatsio/ticket_buyers.rb
Instance Attribute Summary collapse
-
#added ⇒ Object
readonly
Returns the value of attribute added.
-
#already_present ⇒ Object
readonly
Returns the value of attribute already_present.
Instance Method Summary collapse
-
#initialize(data) ⇒ AddTicketBuyerIdsResult
constructor
A new instance of AddTicketBuyerIdsResult.
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
#added ⇒ Object (readonly)
Returns the value of attribute added.
33 34 35 |
# File 'lib/seatsio/ticket_buyers.rb', line 33 def added @added end |
#already_present ⇒ Object (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 |