| 288 | } |
| 289 | |
| 290 | type 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 |
| 305 | func (r AssistantDeleted) RawJSON() string { return r.JSON.raw } |
nothing calls this directly
no outgoing calls
no test coverage detected