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

Request payload for updating an existing role.

Fields

  • :description - optional - String.t() | any()
    New description for the role.

  • :permissions - optional - [String.t()] | any()
    Updated set of permissions for the role.

  • :role_name - optional - String.t() | any()
    New name for the role.

Summary

Types

@type t() :: %ExOpenAI.Components.PublicUpdateOrganizationRoleBody{
  description: (String.t() | any()) | nil,
  permissions: ([String.t()] | any()) | nil,
  role_name: (String.t() | any()) | nil
}