Class: OpenAI::Models::Responses::ResponseComputerToolCallOutputItem::AcknowledgedSafetyCheck
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- OpenAI::Models::Responses::ResponseComputerToolCallOutputItem::AcknowledgedSafetyCheck
- Defined in:
- lib/openai/models/responses/response_computer_tool_call_output_item.rb
Instance Attribute Summary collapse
-
#code ⇒ String?
The type of the pending safety check.
-
#id ⇒ String
The ID of the pending safety check.
-
#message ⇒ String?
Details about the pending safety check.
Instance Method Summary collapse
-
#initialize(id:, code: nil, message: nil) ⇒ Object
constructor
A pending safety check for the computer call.
Methods inherited from Internal::Type::BaseModel
==, #==, #[], 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
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
#initialize(id:, code: nil, message: nil) ⇒ Object
A pending safety check for the computer call.
|
|
# File 'lib/openai/models/responses/response_computer_tool_call_output_item.rb', line 106
|
Instance Attribute Details
#code ⇒ String?
The type of the pending safety check.
98 |
# File 'lib/openai/models/responses/response_computer_tool_call_output_item.rb', line 98 optional :code, String, nil?: true |
#id ⇒ String
The ID of the pending safety check.
92 |
# File 'lib/openai/models/responses/response_computer_tool_call_output_item.rb', line 92 required :id, String |
#message ⇒ String?
Details about the pending safety check.
104 |
# File 'lib/openai/models/responses/response_computer_tool_call_output_item.rb', line 104 optional :message, String, nil?: true |