Class: SupportThreadTreeReturn

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

Overview

http://soapi.ovh.com/managersupportThreadTreeReturn

Constant Summary collapse

@@schema_type =
"supportThreadTreeReturn"
@@schema_ns =
"http://soapi.ovh.com/manager"
@@schema_element =
[["id", ["SOAP::SOAPInt", XSD::QName.new(nil, "id")]], ["subject", ["SOAP::SOAPString", XSD::QName.new(nil, "subject")]], ["domain", ["SOAP::SOAPString", XSD::QName.new(nil, "domain")]], ["closed", ["SOAP::SOAPInt", XSD::QName.new(nil, "closed")]], ["reportReason", ["SOAP::SOAPString", XSD::QName.new(nil, "reportReason")]], ["messages", ["MyArrayOfSupportThreadMessageDetailStructType", XSD::QName.new(nil, "messages")]]]

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(id = nil, subject = nil, domain = nil, closed = nil, reportReason = nil, messages = nil) ⇒ SupportThreadTreeReturn

Returns a new instance of SupportThreadTreeReturn.



64
65
66
67
68
69
70
71
# File 'lib/ovhrb/manager/manager.rb', line 64

def initialize(id = nil, subject = nil, domain = nil, closed = nil, reportReason = nil, messages = nil)
  @id = id
  @subject = subject
  @domain = domain
  @closed = closed
  @reportReason = reportReason
  @messages = messages
end

Instance Attribute Details

#closedObject

Returns the value of attribute closed.



60
61
62
# File 'lib/ovhrb/manager/manager.rb', line 60

def closed
  @closed
end

#domainObject

Returns the value of attribute domain.



59
60
61
# File 'lib/ovhrb/manager/manager.rb', line 59

def domain
  @domain
end

#idObject

Returns the value of attribute id.



57
58
59
# File 'lib/ovhrb/manager/manager.rb', line 57

def id
  @id
end

#messagesObject

Returns the value of attribute messages.



62
63
64
# File 'lib/ovhrb/manager/manager.rb', line 62

def messages
  @messages
end

#reportReasonObject

Returns the value of attribute reportReason.



61
62
63
# File 'lib/ovhrb/manager/manager.rb', line 61

def reportReason
  @reportReason
end

#subjectObject

Returns the value of attribute subject.



58
59
60
# File 'lib/ovhrb/manager/manager.rb', line 58

def subject
  @subject
end