View Source ExOpenAI.Components.RoleListResource (ex_openai.ex v2.0.0-beta2)
Paginated list of roles assigned to a principal.
Fields
:data- required -[ExOpenAI.Components.AssignedRoleDetails.t()]
Role assignments returned in the current page.:has_more- required -boolean()
Whether additional assignments are available when paginating.:next- required -String.t() | any()
Cursor to fetch the next page of results, ornullwhen there are no more assignments.:object- required -:list
Alwayslist.
Allowed values:"list"
Summary
Types
@type t() :: %ExOpenAI.Components.RoleListResource{ data: [ExOpenAI.Components.AssignedRoleDetails.t()], has_more: boolean(), next: String.t() | any(), object: :list }