MCPcopy
hub / github.com/openai/openai-go / AssistantDeleted

Struct AssistantDeleted

betaassistant.go:290–302  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

288}
289
290type AssistantDeleted struct {
291 ID string `json:"id" api:"required"`
292 Deleted bool `json:"deleted" api:"required"`
293 Object constant.AssistantDeleted `json:"object" default:"assistant.deleted"`
294 // JSON contains metadata for fields, check presence with [respjson.Field.Valid].
295 JSON struct {
296 ID respjson.Field
297 Deleted respjson.Field
298 Object respjson.Field
299 ExtraFields map[string]respjson.Field
300 raw string
301 } `json:"-"`
302}
303
304// Returns the unmodified JSON received from the API
305func (r AssistantDeleted) RawJSON() string { return r.JSON.raw }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected