Sha256: ed2df03ae2da6de1a070d9bd6e7ab1c88a4adca5844ed4d317ba31972a40423a
Contents?: true
Size: 725 Bytes
Versions: 1
Compression:
Stored size: 725 Bytes
Contents
module TD::Types # A file generated by the application. # # @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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
tdlib-schema-1.7.0.1 | lib/tdlib/types/input_file/generated.rb |