summaryrefslogtreecommitdiff
path: root/lib/bitbucket/representation/user.rb
blob: ba6b7667b49f8610f3932c3111b35d798219e805 (plain)
1
2
3
4
5
6
7
8
9
module Bitbucket
  module Representation
    class User < Representation::Base
      def username
        raw['username']
      end
    end
  end
end