Skip to content
This repository has been archived by the owner on Nov 9, 2023. It is now read-only.

Latest commit

 

History

History
24 lines (18 loc) · 681 Bytes

AssistantFileObject.md

File metadata and controls

24 lines (18 loc) · 681 Bytes

OpenapiClient::AssistantFileObject

Properties

Name Type Description Notes
id String The identifier, which can be referenced in API endpoints.
object String The object type, which is always `assistant.file`.
created_at Integer The Unix timestamp (in seconds) for when the assistant file was created.
assistant_id String The assistant ID that the file is attached to.

Example

require 'openapi_client'

instance = OpenapiClient::AssistantFileObject.new(
  id: null,
  object: null,
  created_at: null,
  assistant_id: null
)