Class: AutomatedMailGetErrorsStruct

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

Overview

http://soapi.ovh.com/managerautomatedMailGetErrorsStruct

Constant Summary collapse

@@schema_type =
"automatedMailGetErrorsStruct"
@@schema_ns =
"http://soapi.ovh.com/manager"
@@schema_element =
[["to", ["SOAP::SOAPString", XSD::QName.new(nil, "to")]], ["total", ["SOAP::SOAPInt", XSD::QName.new(nil, "total")]], ["date", ["SOAP::SOAPString", XSD::QName.new(nil, "date")]], ["message", ["SOAP::SOAPString", XSD::QName.new(nil, "message")]]]

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(to = nil, total = nil, date = nil, message = nil) ⇒ AutomatedMailGetErrorsStruct

Returns a new instance of AutomatedMailGetErrorsStruct.



4551
4552
4553
4554
4555
4556
# File 'lib/ovhrb/manager/manager.rb', line 4551

def initialize(to = nil, total = nil, date = nil, message = nil)
  @to = to
  @total = total
  @date = date
  @message = message
end

Instance Attribute Details

#dateObject

Returns the value of attribute date.



4548
4549
4550
# File 'lib/ovhrb/manager/manager.rb', line 4548

def date
  @date
end

#messageObject

Returns the value of attribute message.



4549
4550
4551
# File 'lib/ovhrb/manager/manager.rb', line 4549

def message
  @message
end

#toObject

Returns the value of attribute to.



4546
4547
4548
# File 'lib/ovhrb/manager/manager.rb', line 4546

def to
  @to
end

#totalObject

Returns the value of attribute total.



4547
4548
4549
# File 'lib/ovhrb/manager/manager.rb', line 4547

def total
  @total
end