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 first invite_id in the retrieved list

  • :has_more - optional - boolean()
    The has_more property is used for pagination to indicate there are additional results.

  • :last_id - optional - String.t()
    The last invite_id in the retrieved list

  • :object - required - :list
    The object type, which is always list
    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
}