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

Response returned after updating a group.

Fields

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

  • :id - required - String.t()
    Identifier for the group.

  • :is_scim_managed - required - boolean()
    Whether the group is managed through SCIM and controlled by your identity provider.

  • :name - required - String.t()
    Updated display name for the group.

Summary

Types

@type t() :: %ExOpenAI.Components.GroupResourceWithSuccess{
  created_at: integer(),
  id: String.t(),
  is_scim_managed: boolean(),
  name: String.t()
}