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.



101
102
103
104
# File 'lib/zm/client/appointment/appointment.rb', line 101

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.



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

def display_name
  @display_name
end

#emailObject

Returns the value of attribute email.



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

def email
  @email
end