class PostHog::EvaluationReason

Represents the reason why a flag was enabled/disabled

def initialize(json)

def initialize(json)
  json.transform_keys!(&:to_s)
  @code = json['code']
  @description = json['description']
  @condition_index = json['condition_index'].to_i if json['condition_index']
end