Sha256: 147373145fea377f9ccd79b0aec9697468a92f66e046e38f534b06a822f19e9f
Contents?: true
Size: 779 Bytes
Versions: 1
Compression:
Stored size: 779 Bytes
Contents
module TD::Types # A language pack string which has different forms based on the number of some object it mentions. # # @attr zero_value [String] Value for zero objects. # @attr one_value [String] Value for one object. # @attr two_value [String] Value for two objects. # @attr few_value [String] Value for few objects. # @attr many_value [String] Value for many objects. # @attr other_value [String] Default value. class LanguagePackStringValue::Pluralized < LanguagePackStringValue attribute :zero_value, TD::Types::String attribute :one_value, TD::Types::String attribute :two_value, TD::Types::String attribute :few_value, TD::Types::String attribute :many_value, TD::Types::String attribute :other_value, TD::Types::String end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
tdlib-ruby-2.0.0 | lib/tdlib/types/language_pack_string_value/pluralized.rb |