class Seahorse::Client::Response

def inspect

Other tags:
    Api: - private
def inspect
  if @data
    @data.respond_to?(:pretty_inspect) ? @data.pretty_inspect : super
  else
    super
  end
end