Class: Zavudev::Models::MessageContent::Section::Row
Instance Attribute Summary collapse
Instance Method Summary
collapse
==, #==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, inspect, #inspect, known_fields, optional, recursively_to_h, required, #to_h, #to_json, #to_s, to_sorbet_type, #to_yaml
#coerce, coerce, #dump, dump, #inspect, inspect, meta_info, new_coerce_state, type_info
#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type
Constructor Details
#initialize(id:, title:, description: nil) ⇒ Object
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
|
# File 'lib/zavudev/models/message_content.rb', line 184
class Row < Zavudev::Internal::Type::BaseModel
required :id, String
required :title, String
optional :description, String
end
|
Instance Attribute Details
#description ⇒ String?
198
|
# File 'lib/zavudev/models/message_content.rb', line 198
optional :description, String
|
#id ⇒ String
188
|
# File 'lib/zavudev/models/message_content.rb', line 188
required :id, String
|
#title ⇒ String
193
|
# File 'lib/zavudev/models/message_content.rb', line 193
required :title, String
|