Handles the headers used in <= v13 (both sandbox and production)

Methods
N
O
Attributes
[R] tag
[W] value
Class Public methods
new(tag, value)

Constructor for Pre200902HeaderHandler.

Args:

  • tag: XML tag name to be handled (email, password, etc.)
  • value: value to be sent inside tag on outgoing requests
# File lib/adwords4r/credentials.rb, line 62
    def initialize(tag, value)
      super(XSD::QName.new(nil, tag))
      @tag = tag
      @value = value
    end
Instance Public methods
on_simple_outbound()

Handles callback.

# File lib/adwords4r/credentials.rb, line 69
    def on_simple_outbound
      @value
    end