Sha256: ef7adbc4f96a83be10098ef3e34fe762d6de675069f4d7958c54a197843a5804

Contents?: true

Size: 758 Bytes

Versions: 2

Compression:

Stored size: 758 Bytes

Contents

module TD::Types
  # A file generated by the application.
  #
  # @attr original_path [TD::Types::String, nil] Local path to a file from which the file is generated; may be empty if
  #   there is no such file.
  # @attr conversion [TD::Types::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::Coercible::Integer
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
tdlib-schema-1.7.0.3 lib/tdlib/types/input_file/generated.rb
tdlib-schema-1.7.0.2 lib/tdlib/types/input_file/generated.rb