Class: TelephonyPendingActionStruct

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

Overview

http://soapi.ovh.com/managertelephonyPendingActionStruct

Constant Summary collapse

@@schema_type =
"telephonyPendingActionStruct"
@@schema_ns =
"http://soapi.ovh.com/manager"
@@schema_element =
[["dateTodo", ["SOAP::SOAPString", XSD::QName.new(nil, "dateTodo")]], ["offer", ["SOAP::SOAPString", XSD::QName.new(nil, "offer")]], ["action", ["SOAP::SOAPString", XSD::QName.new(nil, "action")]]]

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(dateTodo = nil, offer = nil, action = nil) ⇒ TelephonyPendingActionStruct

Returns a new instance of TelephonyPendingActionStruct.



211
212
213
214
215
# File 'lib/ovhrb/manager/manager.rb', line 211

def initialize(dateTodo = nil, offer = nil, action = nil)
  @dateTodo = dateTodo
  @offer = offer
  @action = action
end

Instance Attribute Details

#actionObject

Returns the value of attribute action.



209
210
211
# File 'lib/ovhrb/manager/manager.rb', line 209

def action
  @action
end

#dateTodoObject

Returns the value of attribute dateTodo.



207
208
209
# File 'lib/ovhrb/manager/manager.rb', line 207

def dateTodo
  @dateTodo
end

#offerObject

Returns the value of attribute offer.



208
209
210
# File 'lib/ovhrb/manager/manager.rb', line 208

def offer
  @offer
end