Sha256: 54b9db1b42d7012978d1a39e873b16596c01c7d731ed569045c74020a19aba91
Contents?: true
Size: 641 Bytes
Versions: 10
Compression:
Stored size: 641 Bytes
Contents
module EventbriteSDK class Attendee < Resource resource_path 'orders/:order_id/attendees/:id' belongs_to :order, object_class: 'Order' has_many :attendees, object_class: 'Attendee' schema_definition do string 'event_id' string 'order_id' string 'ticket_class_id' string 'ticket_class_name' string 'status' boolean 'refunded' boolean 'cancelled' boolean 'checked_in' integer 'quantity' string 'profile' string 'costs' utc 'created', read_only: true utc 'changed', read_only: true string 'resource_uri', read_only: true end end end
Version data entries
10 entries across 10 versions & 1 rubygems