Skip to content

Latest commit

 

History

History
60 lines (53 loc) · 3.18 KB

File metadata and controls

60 lines (53 loc) · 3.18 KB

Member

Properties

Name Type Description Notes
_links { [key: string]: Link; } The location and content type of related resources [default to undefined]
_id string The member's ID [default to undefined]
firstName string The member's first name [optional] [default to undefined]
lastName string The member's last name [optional] [default to undefined]
role string The member's base role. If the member has no additional roles, this role will be in effect. [default to undefined]
email string The member's email address [default to undefined]
_pendingInvite boolean Whether the member has a pending invitation [default to undefined]
_verified boolean Whether the member's email address has been verified [default to undefined]
_pendingEmail string The member's email address before it has been verified, for accounts where email verification is required [optional] [default to undefined]
customRoles Array<string> The set of additional roles, besides the base role, assigned to the member [default to undefined]
mfa string Whether multi-factor authentication is enabled for this member [default to undefined]
excludedDashboards Array<string> Default dashboards that the member has chosen to ignore [optional] [default to undefined]
_lastSeen number [default to undefined]
_lastSeenMetadata LastSeenMetadata [optional] [default to undefined]
_integrationMetadata IntegrationMetadata [optional] [default to undefined]
teams Array<MemberTeamSummaryRep> Details on the teams this member is assigned to [optional] [default to undefined]
permissionGrants Array<MemberPermissionGrantSummaryRep> A list of permission grants. Permission grants allow a member to have access to a specific action, without having to create or update a custom role. [optional] [default to undefined]
creationDate number [default to undefined]
oauthProviders Array<string> A list of OAuth providers [optional] [default to undefined]
version number Version of the current configuration [optional] [default to undefined]
roleAttributes { [key: string]: Array<string>; } [optional] [default to undefined]

Example

import { Member } from 'launchdarkly-api-typescript';

const instance: Member = {
    _links,
    _id,
    firstName,
    lastName,
    role,
    email,
    _pendingInvite,
    _verified,
    _pendingEmail,
    customRoles,
    mfa,
    excludedDashboards,
    _lastSeen,
    _lastSeenMetadata,
    _integrationMetadata,
    teams,
    permissionGrants,
    creationDate,
    oauthProviders,
    version,
    roleAttributes,
};

[Back to Model list] [Back to API list] [Back to README]