Sha256: b46b6bef5cfd13b1a0c8666d3609643734748b06f5f2845242d6f4c1b2d1ef83

Contents?: true

Size: 1 KB

Versions: 2

Compression:

Stored size: 1 KB

Contents

require 'xsd/qname'

module YSM::LocationService


# {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://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}getMasterAccountLocation
class GetMasterAccountLocation
  def initialize
  end
end

# {http://marketing.ews.yahooapis.com/V1}getMasterAccountLocationResponse
class GetMasterAccountLocationResponse
  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/LocationService.rb
ysm4r-0.1 lib/ysm4r/v1/sandbox/LocationService.rb