Class: TelephonyVoicemailMessagesStatusReturn

Inherits:
Object
  • Object
show all
Defined in:
lib/ovhrb/manager/manager.rb

Overview

http://soapi.ovh.com/managertelephonyVoicemailMessagesStatusReturn

Constant Summary collapse

@@schema_type =
"telephonyVoicemailMessagesStatusReturn"
@@schema_ns =
"http://soapi.ovh.com/manager"
@@schema_element =
[["unavailable", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "unavailable")]], ["busy", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "busy")]], ["temp", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "temp")]], ["greet", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "greet")]]]

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(unavailable = nil, busy = nil, temp = nil, greet = nil) ⇒ TelephonyVoicemailMessagesStatusReturn

Returns a new instance of TelephonyVoicemailMessagesStatusReturn.



743
744
745
746
747
748
# File 'lib/ovhrb/manager/manager.rb', line 743

def initialize(unavailable = nil, busy = nil, temp = nil, greet = nil)
  @unavailable = unavailable
  @busy = busy
  @temp = temp
  @greet = greet
end

Instance Attribute Details

#busyObject

Returns the value of attribute busy.



739
740
741
# File 'lib/ovhrb/manager/manager.rb', line 739

def busy
  @busy
end

#greetObject

Returns the value of attribute greet.



741
742
743
# File 'lib/ovhrb/manager/manager.rb', line 741

def greet
  @greet
end

#tempObject

Returns the value of attribute temp.



740
741
742
# File 'lib/ovhrb/manager/manager.rb', line 740

def temp
  @temp
end

#unavailableObject

Returns the value of attribute unavailable.



738
739
740
# File 'lib/ovhrb/manager/manager.rb', line 738

def unavailable
  @unavailable
end