class Github::API::Config::PropertySet

def to_hash

Other tags:
    Api: - public
def to_hash
  properties.each_with_object({}) do |property, props|
    name = property.name
    props[name] = self[name]
  end
end