View Source ExOpenAI.Components.InviteListResponse (ex_openai.ex v2.0.0-beta2)
Module for representing the OpenAI schema InviteListResponse.
Fields
:data- required -[ExOpenAI.Components.Invite.t()]:first_id- optional -String.t()
The firstinvite_idin the retrievedlist:has_more- optional -boolean()
Thehas_moreproperty is used for pagination to indicate there are additional results.:last_id- optional -String.t()
The lastinvite_idin the retrievedlist:object- required -:list
The object type, which is alwayslist
Allowed values:"list"
Summary
Types
@type t() :: %ExOpenAI.Components.InviteListResponse{ data: [ExOpenAI.Components.Invite.t()], first_id: String.t() | nil, has_more: boolean() | nil, last_id: String.t() | nil, object: :list }