Class: SupportSendMessageReturn

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

Overview

http://soapi.ovh.com/managersupportSendMessageReturn

Constant Summary collapse

@@schema_type =
"supportSendMessageReturn"
@@schema_ns =
"http://soapi.ovh.com/manager"
@@schema_element =
[["threadId", ["SOAP::SOAPInt", XSD::QName.new(nil, "threadId")]], ["messageId", ["SOAP::SOAPInt", XSD::QName.new(nil, "messageId")]], ["dateTime", ["SOAP::SOAPString", XSD::QName.new(nil, "dateTime")]]]

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(threadId = nil, messageId = nil, dateTime = nil) ⇒ SupportSendMessageReturn

Returns a new instance of SupportSendMessageReturn.



139
140
141
142
143
# File 'lib/ovhrb/manager/manager.rb', line 139

def initialize(threadId = nil, messageId = nil, dateTime = nil)
  @threadId = threadId
  @messageId = messageId
  @dateTime = dateTime
end

Instance Attribute Details

#dateTimeObject

Returns the value of attribute dateTime.



137
138
139
# File 'lib/ovhrb/manager/manager.rb', line 137

def dateTime
  @dateTime
end

#messageIdObject

Returns the value of attribute messageId.



136
137
138
# File 'lib/ovhrb/manager/manager.rb', line 136

def messageId
  @messageId
end

#threadIdObject

Returns the value of attribute threadId.



135
136
137
# File 'lib/ovhrb/manager/manager.rb', line 135

def threadId
  @threadId
end