Class: EmailRedirectionStruct

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

Overview

http://soapi.ovh.com/manageremailRedirectionStruct

Constant Summary collapse

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(target = nil, local = nil, subdomain = nil, dnsRedirection = nil) ⇒ EmailRedirectionStruct

Returns a new instance of EmailRedirectionStruct.



5096
5097
5098
5099
5100
5101
# File 'lib/ovhrb/manager/manager.rb', line 5096

def initialize(target = nil, local = nil, subdomain = nil, dnsRedirection = nil)
  @target = target
  @local = local
  @subdomain = subdomain
  @dnsRedirection = dnsRedirection
end

Instance Attribute Details

#dnsRedirectionObject

Returns the value of attribute dnsRedirection.



5094
5095
5096
# File 'lib/ovhrb/manager/manager.rb', line 5094

def dnsRedirection
  @dnsRedirection
end

#localObject

Returns the value of attribute local.



5092
5093
5094
# File 'lib/ovhrb/manager/manager.rb', line 5092

def local
  @local
end

#subdomainObject

Returns the value of attribute subdomain.



5093
5094
5095
# File 'lib/ovhrb/manager/manager.rb', line 5093

def subdomain
  @subdomain
end

#targetObject

Returns the value of attribute target.



5091
5092
5093
# File 'lib/ovhrb/manager/manager.rb', line 5091

def target
  @target
end