Sha256: 8f7b5f38855384d424ae8ed3e105927221660b80aa4eb9a435b4c3567cbc3bf7

Contents?: true

Size: 644 Bytes

Versions: 1

Compression:

Stored size: 644 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.
  # @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-ruby-2.0.0 lib/tdlib/types/input_file/generated.rb