class BrazeRuby::REST::Base
Attributes
http[W]
Public Class Methods
new(api_key, braze_url, options)
click to toggle source
# File lib/braze_ruby/rest/base.rb, line 10 def initialize(api_key, braze_url, options) @api_key = api_key @braze_url = braze_url @options = options end
Private Instance Methods
http()
click to toggle source
# File lib/braze_ruby/rest/base.rb, line 18 def http @http ||= BrazeRuby::HTTP.new(@api_key, @braze_url, @options) end