Class: DomainCheckStruct

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

Overview

http://soapi.ovh.com/managerdomainCheckStruct

Constant Summary collapse

@@schema_type =
"domainCheckStruct"
@@schema_ns =
"http://soapi.ovh.com/manager"
@@schema_element =
[["predicate", ["SOAP::SOAPString", XSD::QName.new(nil, "predicate")]], ["value", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "value")]], ["reason", ["SOAP::SOAPString", XSD::QName.new(nil, "reason")]]]

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(predicate = nil, value = nil, reason = nil) ⇒ DomainCheckStruct

Returns a new instance of DomainCheckStruct.



4848
4849
4850
4851
4852
# File 'lib/ovhrb/manager/manager.rb', line 4848

def initialize(predicate = nil, value = nil, reason = nil)
  @predicate = predicate
  @value = value
  @reason = reason
end

Instance Attribute Details

#predicateObject

Returns the value of attribute predicate.



4844
4845
4846
# File 'lib/ovhrb/manager/manager.rb', line 4844

def predicate
  @predicate
end

#reasonObject

Returns the value of attribute reason.



4846
4847
4848
# File 'lib/ovhrb/manager/manager.rb', line 4846

def reason
  @reason
end

#valueObject

Returns the value of attribute value.



4845
4846
4847
# File 'lib/ovhrb/manager/manager.rb', line 4845

def value
  @value
end