Handles the headers used in <= v13 (both sandbox and production)
Methods
Attributes
[R] | tag | |
[W] | value |
Class Public methods
Constructor for Pre200902HeaderHandler.
Args:
- tag: XML tag name to be handled (email, password, etc.)
- value: value to be sent inside tag on outgoing requests
Source: show
# 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
Handles callback.
Source: show
# File lib/adwords4r/credentials.rb, line 69 def on_simple_outbound @value end