summaryrefslogtreecommitdiff
path: root/lib/bitbucket/representation/url.rb
blob: 24ae10480138d620fac0b8ea744efc4bd3374f34 (plain)
1
2
3
4
5
6
7
8
9
module Bitbucket
  module Representation
    class Url < Representation::Base
      def to_s
        raw.dig('links', 'self', 'href')
      end
    end
  end
end