MemberSummary

July 9, 2025 ยท View on GitHub

Example Usage

import { MemberSummary } from "@launchdarkly/mcp-server/models/components";

let value: MemberSummary = {
  links: {
    "self": {
      href: "/api/v2/members/569f183514f4432160000007",
      type: "application/json",
    },
  },
  id: "569f183514f4432160000007",
  firstName: "Ariel",
  lastName: "Flores",
  role: "admin",
  email: "ariel@acme.com",
};

Fields

FieldTypeRequiredDescriptionExample
linksRecord<string, components.Link>:heavy_check_mark:The location and content type of related resources{
"self": {
"href": "/api/v2/members/569f183514f4432160000007",
"type": "application/json"
}
}
idstring:heavy_check_mark:The member's ID569f183514f4432160000007
firstNamestring:heavy_minus_sign:The member's first nameAriel
lastNamestring:heavy_minus_sign:The member's last nameFlores
rolestring:heavy_check_mark:The member's base role. If the member has no additional roles, this role will be in effect.admin
emailstring:heavy_check_mark:The member's email addressariel@acme.com