lib/travis/client/ssh_key.rb



# frozen_string_literal: true

require 'json'

module Travis
  module Client
    class SshKey < SingletonSetting
      attributes :description, :fingerprint
      one        :ssh_key
      many       :ssh_keys
    end
  end
end