class Github::ResponseWrapper

def has_key?(key)


Check if body has an attribute
def has_key?(key)
  self.body.is_a?(Hash) && self.body.has_key?(key)
end