View Source ExOpenAI.Components.ProjectGroup (ex_openai.ex v2.0.0-beta2)

Details about a group's membership in a project.

Fields

  • :created_at - required - integer()
    Unix timestamp (in seconds) when the group was granted project access.
    Format: int64

  • :group_id - required - String.t()
    Identifier of the group that has access to the project.

  • :group_name - required - String.t()
    Display name of the group.

  • :object - required - :"project.group"
    Always project.group.
    Allowed values: "project.group"

  • :project_id - required - String.t()
    Identifier of the project.

Summary

Types

@type t() :: %ExOpenAI.Components.ProjectGroup{
  created_at: integer(),
  group_id: String.t(),
  group_name: String.t(),
  object: :"project.group",
  project_id: String.t()
}