class ExactTargetClient::Conf

Constants

DEFAULT_API_ENDPOINT
DEFAULT_TOKEN_ENDPOINT
DEFAULT_WSDL

Attributes

api_endpoint[RW]
client_id[RW]
client_secret[RW]
token_endpoint[RW]
wsdl[RW]

Public Class Methods

configure() { |self| ... } click to toggle source
# File lib/exact_target_client/conf.rb, line 13
def configure
  @token_endpoint = DEFAULT_TOKEN_ENDPOINT
  @api_endpoint = DEFAULT_API_ENDPOINT
  @wsdl = DEFAULT_WSDL
  yield self
  true
end