class PostHog::Response

def initialize(status = 200, error = nil)



public: Simple class to wrap responses from the API
def initialize(status = 200, error = nil)
  @status = status
  @error = error
end