Class Project
Renamed from AssistantObject to Assistant (2024.06.14)
Inherited Members
Namespace: Glitch9.AIDevKit.OpenAI.Administration
Assembly: Glitch9.AIDevKit.Provider.OpenAI.dll
Syntax
public sealed class Project
Properties
| Edit this page View SourceArchivedAt
Optional. The Unix timestamp (in seconds) of when the project was archived or null.
Declaration
[JsonProperty("archived_at")]
public UnixTime? ArchivedAt { get; set; }
Property Value
| Type | Description |
|---|---|
| UnixTime? |
CreatedAt
Required. The Unix timestamp (in seconds) of when the project was created.
Declaration
[JsonProperty("created_at")]
public UnixTime CreatedAt { get; set; }
Property Value
| Type | Description |
|---|---|
| UnixTime |
Id
Required. The identifier, which can be referenced in API endpoints
Declaration
[JsonProperty("id")]
public string Id { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Name
Required. The name of the project. This appears in reporting.
Declaration
[JsonProperty("name")]
public string Name { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Object
Required. The object type, which is always organization.project
Declaration
[JsonProperty("object")]
public string Object { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Status
Required. active or archived
Declaration
[JsonProperty("status")]
public string Status { get; set; }
Property Value
| Type | Description |
|---|---|
| string |