user.rb 150 字节
Newer Older
1 2 3 4
module Bitbucket
  module Representation
    class User < Representation::Base
      def username
5
        raw['username']
6 7 8 9
      end
    end
  end
end