module ChartMogul::API::Actions::Custom

Public Class Methods

included(base) click to toggle source
# File lib/chartmogul/api/actions/custom.rb, line 7
def self.included(base)
  base.extend ClassMethods
end

Public Instance Methods

custom!(http_method, http_path, body_data = {}) click to toggle source
# File lib/chartmogul/api/actions/custom.rb, line 15
def custom!(http_method, http_path, body_data = {})
  json = custom_without_assign!(http_method, http_path, body_data)
  assign_all_attributes(json)
end
custom_without_assign!(http_method, http_path, body_data = {}) click to toggle source
# File lib/chartmogul/api/actions/custom.rb, line 11
def custom_without_assign!(http_method, http_path, body_data = {})
  self.class.custom_without_assign!(http_method, http_path, body_data)
end