lib/ittybit/types/file_kind.rb



# frozen_string_literal: true

module Ittybit
  # The general type of media.
  class FileKind
    VIDEO = "video"
    IMAGE = "image"
    AUDIO = "audio"
  end
end