You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The OpenAPI specification defines the following type:
UsageCodeInterpreterSessionsResult:
type: objectdescription: The aggregated code interpreter sessions usage details of the specific time bucket.properties:
object:
type: stringenum:
- organization.usage.code_interpreter_sessions.resultx-stainless-const: truenum_sessions:
type: integerdescription: The number of code interpreter sessions.# ...required:
- object
- sessions # doesn't exist!
However, the required sessions property does not exist in UsageCodeInterpreterSessionsResult. The only relevant property appears to be num_sessions, so it seems likely that this was an oversight.
Expected Behavior
The required section should reference num_sessions instead of sessions to align with the actual properties defined in UsageCodeInterpreterSessionsResult:
required:
- object
- num_sessions
The text was updated successfully, but these errors were encountered:
The OpenAPI specification defines the following type:
However, the required
sessions
property does not exist inUsageCodeInterpreterSessionsResult
. The only relevant property appears to benum_sessions
, so it seems likely that this was an oversight.Expected Behavior
The required section should reference
num_sessions
instead ofsessions
to align with the actual properties defined inUsageCodeInterpreterSessionsResult
:The text was updated successfully, but these errors were encountered: