Sha256: f729a1c9d412702bbaceec95d2987a3431f796a7548d553eb0e0ea6ad19d690a

Contents?: true

Size: 720 Bytes

Versions: 2

Compression:

Stored size: 720 Bytes

Contents

module TD::Types
  # A file generated by the client.
  #
  # @attr original_path [String, nil] Local path to a file from which the file is generated; may be empty if there is
  #   no such file.
  # @attr conversion [String] String specifying the conversion applied to the original file; should be persistent
  #   across application restarts.
  #   Conversions beginning with '#' are reserved for internal TDLib usage.
  # @attr expected_size [Integer] Expected size of the generated file; 0 if unknown.
  class InputFile::Generated < InputFile
    attribute :original_path, TD::Types::String.optional.default(nil)
    attribute :conversion, TD::Types::String
    attribute :expected_size, TD::Types::Integer
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
tdlib-ruby-2.2.0 lib/tdlib/types/input_file/generated.rb
tdlib-ruby-2.1.0 lib/tdlib/types/input_file/generated.rb