Class: OrtStruct

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

Overview

Constant Summary collapse

@@schema_type =
"ortStruct"
@@schema_ns =
"http://soapi.ovh.com/manager"
@@schema_element =
[["subdomain", ["SOAP::SOAPString", XSD::QName.new(nil, "subdomain")]], ["target", ["SOAP::SOAPString", XSD::QName.new(nil, "target")]], ["type", ["SOAP::SOAPString", XSD::QName.new(nil, "type")]]]

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(subdomain = nil, target = nil, type = nil) ⇒ OrtStruct

Returns a new instance of OrtStruct.



4897
4898
4899
4900
4901
# File 'lib/ovhrb/manager/manager.rb', line 4897

def initialize(subdomain = nil, target = nil, type = nil)
  @subdomain = subdomain
  @target = target
  @type = type
end

Instance Attribute Details

#subdomainObject

Returns the value of attribute subdomain.



4893
4894
4895
# File 'lib/ovhrb/manager/manager.rb', line 4893

def subdomain
  @subdomain
end

#targetObject

Returns the value of attribute target.



4894
4895
4896
# File 'lib/ovhrb/manager/manager.rb', line 4894

def target
  @target
end

#typeObject

Returns the value of attribute type.



4895
4896
4897
# File 'lib/ovhrb/manager/manager.rb', line 4895

def type
  @type
end