Class: AutomatedMailGetStateReturn

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

Overview

http://soapi.ovh.com/managerautomatedMailGetStateReturn

Constant Summary collapse

@@schema_type =
"automatedMailGetStateReturn"
@@schema_ns =
"http://soapi.ovh.com/manager"
@@schema_element =
[["bounce", ["SOAP::SOAPInt", XSD::QName.new(nil, "bounce")]], ["sent", ["SOAP::SOAPInt", XSD::QName.new(nil, "sent")]], ["v_return", ["SOAP::SOAPString", XSD::QName.new(nil, "return")]], ["state", ["SOAP::SOAPString", XSD::QName.new(nil, "state")]]]

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(bounce = nil, sent = nil, v_return = nil, state = nil) ⇒ AutomatedMailGetStateReturn

Returns a new instance of AutomatedMailGetStateReturn.



4517
4518
4519
4520
4521
4522
# File 'lib/ovhrb/manager/manager.rb', line 4517

def initialize(bounce = nil, sent = nil, v_return = nil, state = nil)
  @bounce = bounce
  @sent = sent
  @v_return = v_return
  @state = state
end

Instance Attribute Details

#bounceObject

Returns the value of attribute bounce.



4505
4506
4507
# File 'lib/ovhrb/manager/manager.rb', line 4505

def bounce
  @bounce
end

#sentObject

Returns the value of attribute sent.



4506
4507
4508
# File 'lib/ovhrb/manager/manager.rb', line 4506

def sent
  @sent
end

#stateObject

Returns the value of attribute state.



4507
4508
4509
# File 'lib/ovhrb/manager/manager.rb', line 4507

def state
  @state
end

Instance Method Details

#returnObject



4509
4510
4511
# File 'lib/ovhrb/manager/manager.rb', line 4509

def return
  @v_return
end

#return=(value) ⇒ Object



4513
4514
4515
# File 'lib/ovhrb/manager/manager.rb', line 4513

def return=(value)
  @v_return = value
end