ChuckJHardy/GitWebHookModel

View on GitHub
lib/git_web_hook_model/hook/owner.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'optional'

class GitWebHookModel
  module Hook
    class Owner
      include Id::Model

      field :name
      field :email, optional: true
      field :username, optional: true
    end
  end
end