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
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
|
# File 'lib/zavudev/models/message_content.rb', line 277
class Row < Zavudev::Internal::Type::BaseModel
required :id, String
required :title, String
optional :description, String
end
|
Instance Attribute Details
#description ⇒ String?
291
|
# File 'lib/zavudev/models/message_content.rb', line 291
optional :description, String
|
#id ⇒ String
281
|
# File 'lib/zavudev/models/message_content.rb', line 281
required :id, String
|
#title ⇒ String
286
|
# File 'lib/zavudev/models/message_content.rb', line 286
required :title, String
|