summaryrefslogtreecommitdiff
path: root/lib/bitbucket/representation/user.rb
blob: 23d7008de92cbc76a84fb3ca710ad78a8d4bc66d (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

module Bitbucket
  module Representation
    class User < Representation::Base
      def username
        raw["username"]
      end
    end
  end
end