Class: Anthropic::Models::Beta::Messages::BetaMessageBatchRequestCounts
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Anthropic::Models::Beta::Messages::BetaMessageBatchRequestCounts
- Defined in:
- lib/anthropic/models/beta/messages/beta_message_batch_request_counts.rb
Instance Attribute Summary collapse
-
#canceled ⇒ Integer
Number of requests in the Message Batch that have been canceled.
-
#errored ⇒ Integer
Number of requests in the Message Batch that encountered an error.
-
#expired ⇒ Integer
Number of requests in the Message Batch that have expired.
-
#processing ⇒ Integer
Number of requests in the Message Batch that are processing.
-
#succeeded ⇒ Integer
Number of requests in the Message Batch that have completed successfully.
Instance Method Summary collapse
-
#initialize(canceled: , errored: , expired: , processing: , succeeded: ) ⇒ void
constructor
Some parameter documentations has been truncated, see BetaMessageBatchRequestCounts for more details.
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(canceled: , errored: , expired: , processing: , succeeded: ) ⇒ void
Some parameter documentations has been truncated, see Anthropic::Models::Beta::Messages::BetaMessageBatchRequestCounts for more details.
|
# File 'lib/anthropic/models/beta/messages/beta_message_batch_request_counts.rb', line 46
|
Instance Attribute Details
#canceled ⇒ Integer
Number of requests in the Message Batch that have been canceled.
This is zero until processing of the entire Message Batch has ended.
14 |
# File 'lib/anthropic/models/beta/messages/beta_message_batch_request_counts.rb', line 14 required :canceled, Integer |
#errored ⇒ Integer
Number of requests in the Message Batch that encountered an error.
This is zero until processing of the entire Message Batch has ended.
22 |
# File 'lib/anthropic/models/beta/messages/beta_message_batch_request_counts.rb', line 22 required :errored, Integer |
#expired ⇒ Integer
Number of requests in the Message Batch that have expired.
This is zero until processing of the entire Message Batch has ended.
30 |
# File 'lib/anthropic/models/beta/messages/beta_message_batch_request_counts.rb', line 30 required :expired, Integer |
#processing ⇒ Integer
Number of requests in the Message Batch that are processing.
36 |
# File 'lib/anthropic/models/beta/messages/beta_message_batch_request_counts.rb', line 36 required :processing, Integer |
#succeeded ⇒ Integer
Number of requests in the Message Batch that have completed successfully.
This is zero until processing of the entire Message Batch has ended.
44 |
# File 'lib/anthropic/models/beta/messages/beta_message_batch_request_counts.rb', line 44 required :succeeded, Integer |