2018-10-06 19:10:08 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-08-22 14:45:29 -04:00
|
|
|
module Bitbucket
|
|
|
|
module Representation
|
|
|
|
class User < Representation::Base
|
|
|
|
def username
|
2016-12-14 05:35:10 -05:00
|
|
|
raw['username']
|
2016-08-22 14:45:29 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|