View Source ExOpenAI.Components.ProjectApiKey (ex_openai.ex v1.8.0)

Schema representing a ProjectApiKey within the OpenAI API

Summary

Types

@type t() :: %ExOpenAI.Components.ProjectApiKey{
  created_at: integer(),
  id: String.t(),
  name: String.t(),
  object: :"organization.project.api_key",
  owner: %{
    service_account: ExOpenAI.Components.ProjectServiceAccount.t(),
    type: :service_account | :user,
    user: ExOpenAI.Components.ProjectUser.t()
  },
  redacted_value: String.t()
}