Method: Forgejo::Repository#to_hash
- Defined in:
- lib/forgejo/models/repository.rb
#to_hash ⇒ Hash
Returns the object in the form of hash
782 783 784 785 786 787 788 789 790 791 792 793 794 |
# File 'lib/forgejo/models/repository.rb', line 782 def to_hash hash = {} self.class.attribute_map.each_pair do |attr, param| value = self.send(attr) if value.nil? is_nullable = self.class.openapi_nullable.include?(attr) next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}")) end hash[param] = _to_hash(value) end hash end |