Class: Zm::Client::Appointment::Organizer

Inherits:
Object
  • Object
show all
Defined in:
lib/zm/client/appointment/appointment.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(email, display_name = nil) ⇒ Organizer

Returns a new instance of Organizer.



98
99
100
101
# File 'lib/zm/client/appointment/appointment.rb', line 98

def initialize(email, display_name = nil)
  @email = email
  @display_name = display_name
end

Instance Attribute Details

#display_nameObject

Returns the value of attribute display_name.



96
97
98
# File 'lib/zm/client/appointment/appointment.rb', line 96

def display_name
  @display_name
end

#emailObject

Returns the value of attribute email.



96
97
98
# File 'lib/zm/client/appointment/appointment.rb', line 96

def email
  @email
end