Class: OpenAI::Models::Beta::ChatKit::ChatKitThreadItemList::Data::ChatKitTaskGroup
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- OpenAI::Models::Beta::ChatKit::ChatKitThreadItemList::Data::ChatKitTaskGroup
- Defined in:
- lib/openai/models/beta/chatkit/chatkit_thread_item_list.rb
Defined Under Namespace
Classes: Task
Instance Attribute Summary collapse
-
#created_at ⇒ Integer
Unix timestamp (in seconds) for when the item was created.
-
#id ⇒ String
Identifier of the thread item.
-
#object ⇒ Symbol, :"chatkit.thread_item"
Type discriminator that is always ‘chatkit.thread_item`.
-
#tasks ⇒ Array<OpenAI::Models::Beta::ChatKit::ChatKitThreadItemList::Data::ChatKitTaskGroup::Task>
Tasks included in the group.
-
#thread_id ⇒ String
Identifier of the parent thread.
-
#type ⇒ Symbol, :"chatkit.task_group"
Type discriminator that is always ‘chatkit.task_group`.
Method Summary
Methods inherited from Internal::Type::BaseModel
#==, ==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, #initialize, inspect, #inspect, known_fields, optional, recursively_to_h, required, #to_h, #to_json, #to_s, to_sorbet_type, #to_yaml
Methods included from Internal::Type::Converter
#coerce, coerce, #dump, dump, inspect, #inspect, meta_info, new_coerce_state, type_info
Methods included from Internal::Util::SorbetRuntimeSupport
#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type
Constructor Details
This class inherits a constructor from OpenAI::Internal::Type::BaseModel
Instance Attribute Details
#created_at ⇒ Integer
Unix timestamp (in seconds) for when the item was created.
275 |
# File 'lib/openai/models/beta/chatkit/chatkit_thread_item_list.rb', line 275 required :created_at, Integer |
#id ⇒ String
Identifier of the thread item.
269 |
# File 'lib/openai/models/beta/chatkit/chatkit_thread_item_list.rb', line 269 required :id, String |
#object ⇒ Symbol, :"chatkit.thread_item"
Type discriminator that is always ‘chatkit.thread_item`.
281 |
# File 'lib/openai/models/beta/chatkit/chatkit_thread_item_list.rb', line 281 required :object, const: :"chatkit.thread_item" |
#tasks ⇒ Array<OpenAI::Models::Beta::ChatKit::ChatKitThreadItemList::Data::ChatKitTaskGroup::Task>
Tasks included in the group.
287 288 |
# File 'lib/openai/models/beta/chatkit/chatkit_thread_item_list.rb', line 287 required :tasks, -> { OpenAI::Internal::Type::ArrayOf[OpenAI::Beta::ChatKit::ChatKitThreadItemList::Data::ChatKitTaskGroup::Task] } |
#thread_id ⇒ String
Identifier of the parent thread.
294 |
# File 'lib/openai/models/beta/chatkit/chatkit_thread_item_list.rb', line 294 required :thread_id, String |
#type ⇒ Symbol, :"chatkit.task_group"
Type discriminator that is always ‘chatkit.task_group`.
300 |
# File 'lib/openai/models/beta/chatkit/chatkit_thread_item_list.rb', line 300 required :type, const: :"chatkit.task_group" |