class BigMarkerClient::Models::Attendee

Attributes

attendance_monitor[RW]
bmid[RW]
browser_name[RW]
browser_version[RW]
chats_count[RW]
conference_id[RW]
country[RW]
custom_fields[RW]
device_name[RW]
download_handout[R]
edited_in_room_display_name[RW]
email[RW]
engaged_duration[RW]
entered_at[RW]
first_name[RW]
handouts[RW]
id[RW]
last_name[RW]
leaved_at[RW]
polls[RW]
polls_count[RW]
qas_count[RW]
questions[RW]
survey_results[RW]
time_zone[RW]
total_duration[RW]
view_handout[R]

Public Instance Methods

download_handout=(handout_array) click to toggle source
# File lib/big_marker_client/models/attendee.rb, line 11
def download_handout=(handout_array)
  @download_handout = if handout_array.nil? || !handout_array.is_a?(Array) || handout_array.empty?
                        []
                      else
                        handout_array.map { |handout_hash| Handout.new(handout_hash) }
                      end
end
view_handout=(handout_array) click to toggle source
# File lib/big_marker_client/models/attendee.rb, line 19
def view_handout=(handout_array)
  @view_handout = if handout_array.nil? || !handout_array.is_a?(Array) || handout_array.empty?
                    []
                  else
                    handout_array.map { |handout_hash| Handout.new(handout_hash) }
                  end
end