Skip to content

Latest commit

 

History

History
34 lines (29 loc) · 2.87 KB

userlistresponse.md

File metadata and controls

34 lines (29 loc) · 2.87 KB

UserListResponse

Example Usage

import { UserListResponse } from "argot-open-ai/models/components";

let value: UserListResponse = {
  object: "list",
  data: [
    {
      object: "organization.user",
      id: "<id>",
      name: "<value>",
      email: "[email protected]",
      role: "owner",
      addedAt: 684935,
    },
  ],
  firstId: "<id>",
  lastId: "<id>",
  hasMore: false,
};

Fields

Field Type Required Description
object components.UserListResponseObject ✔️ N/A
data components.User[] ✔️ N/A
firstId string ✔️ N/A
lastId string ✔️ N/A
hasMore boolean ✔️ N/A