Sha256: ceab374f11525edb72734be02ebde9433a15bc4a39356cb4562da14a3735f6a7
Contents?: true
Size: 1.48 KB
Versions: 2
Compression:
Stored size: 1.48 KB
Contents
require 'xsd/qname' module YSM::UpgradeService # {http://marketing.ews.yahooapis.com/V1}ApiFault class ApiFault < ::StandardError attr_accessor :code attr_accessor :message def initialize(code = nil, message = nil) @code = code @message = message end end # {http://marketing.ews.yahooapis.com/V1}ArrayOfString class ArrayOfString < ::Array end # {http://schemas.xmlsoap.org/ws/2002/07/secext}Security class Security attr_accessor :usernameToken def initialize(usernameToken = nil) @usernameToken = usernameToken end end # {http://schemas.xmlsoap.org/ws/2002/07/secext}UsernameToken class UsernameToken attr_accessor :username attr_accessor :password def initialize(username = nil, password = nil) @username = username @password = password end end # {http://marketing.ews.yahooapis.com/V1}getMasterAccountLocationForUpgradePreview class GetMasterAccountLocationForUpgradePreview def initialize end end # {http://marketing.ews.yahooapis.com/V1}getMasterAccountLocationForUpgradePreviewResponse class GetMasterAccountLocationForUpgradePreviewResponse attr_accessor :out def initialize(out = nil) @out = out end end # {http://marketing.ews.yahooapis.com/V1}getAccountsForUpgradePreview class GetAccountsForUpgradePreview def initialize end end # {http://marketing.ews.yahooapis.com/V1}getAccountsForUpgradePreviewResponse class GetAccountsForUpgradePreviewResponse attr_accessor :out def initialize(out = nil) @out = out end end end
Version data entries
2 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ysm4r-0.1 | lib/ysm4r/v1/UpgradeService.rb |
ysm4r-0.1 | lib/ysm4r/v1/sandbox/UpgradeService.rb |