Class: Pbx::Messages::CallDialplanUpdate

Inherits:
Bubbletea::Message
  • Object
show all
Defined in:
lib/pbx/messages.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(uniqueid:, context:, exten:, application:) ⇒ CallDialplanUpdate

Returns a new instance of CallDialplanUpdate.



133
134
135
136
137
138
139
# File 'lib/pbx/messages.rb', line 133

def initialize(uniqueid:, context:, exten:, application:)
  super()
  @uniqueid = uniqueid
  @context = context
  @exten = exten
  @application = application
end

Instance Attribute Details

#applicationObject (readonly)

Returns the value of attribute application.



131
132
133
# File 'lib/pbx/messages.rb', line 131

def application
  @application
end

#contextObject (readonly)

Returns the value of attribute context.



131
132
133
# File 'lib/pbx/messages.rb', line 131

def context
  @context
end

#extenObject (readonly)

Returns the value of attribute exten.



131
132
133
# File 'lib/pbx/messages.rb', line 131

def exten
  @exten
end

#uniqueidObject (readonly)

Returns the value of attribute uniqueid.



131
132
133
# File 'lib/pbx/messages.rb', line 131

def uniqueid
  @uniqueid
end