Class: SupportMessageDetailReturn

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

Overview

http://soapi.ovh.com/managersupportMessageDetailReturn

Constant Summary collapse

@@schema_type =
"supportMessageDetailReturn"
@@schema_ns =
"http://soapi.ovh.com/manager"
@@schema_element =
[["id", ["SOAP::SOAPInt", XSD::QName.new(nil, "id")]], ["thread", ["SOAP::SOAPInt", XSD::QName.new(nil, "thread")]], ["unreadThread", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "unreadThread")]], ["fromEmail", ["SOAP::SOAPString", XSD::QName.new(nil, "fromEmail")]], ["dateSent", ["SOAP::SOAPString", XSD::QName.new(nil, "dateSent")]], ["subject", ["SOAP::SOAPString", XSD::QName.new(nil, "subject")]], ["body", ["SOAP::SOAPString", XSD::QName.new(nil, "body")]], ["reportReason", ["SOAP::SOAPString", XSD::QName.new(nil, "reportReason")]]]

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(id = nil, thread = nil, unreadThread = nil, fromEmail = nil, dateSent = nil, subject = nil, body = nil, reportReason = nil) ⇒ SupportMessageDetailReturn

Returns a new instance of SupportMessageDetailReturn.



89
90
91
92
93
94
95
96
97
98
# File 'lib/ovhrb/manager/manager.rb', line 89

def initialize(id = nil, thread = nil, unreadThread = nil, fromEmail = nil, dateSent = nil, subject = nil, body = nil, reportReason = nil)
  @id = id
  @thread = thread
  @unreadThread = unreadThread
  @fromEmail = fromEmail
  @dateSent = dateSent
  @subject = subject
  @body = body
  @reportReason = reportReason
end

Instance Attribute Details

#bodyObject

Returns the value of attribute body.



86
87
88
# File 'lib/ovhrb/manager/manager.rb', line 86

def body
  @body
end

#dateSentObject

Returns the value of attribute dateSent.



84
85
86
# File 'lib/ovhrb/manager/manager.rb', line 84

def dateSent
  @dateSent
end

#fromEmailObject

Returns the value of attribute fromEmail.



83
84
85
# File 'lib/ovhrb/manager/manager.rb', line 83

def fromEmail
  @fromEmail
end

#idObject

Returns the value of attribute id.



80
81
82
# File 'lib/ovhrb/manager/manager.rb', line 80

def id
  @id
end

#reportReasonObject

Returns the value of attribute reportReason.



87
88
89
# File 'lib/ovhrb/manager/manager.rb', line 87

def reportReason
  @reportReason
end

#subjectObject

Returns the value of attribute subject.



85
86
87
# File 'lib/ovhrb/manager/manager.rb', line 85

def subject
  @subject
end

#threadObject

Returns the value of attribute thread.



81
82
83
# File 'lib/ovhrb/manager/manager.rb', line 81

def thread
  @thread
end

#unreadThreadObject

Returns the value of attribute unreadThread.



82
83
84
# File 'lib/ovhrb/manager/manager.rb', line 82

def unreadThread
  @unreadThread
end