Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 897 Bytes

File metadata and controls

28 lines (21 loc) · 897 Bytes

MemberDataRep

Properties

Name Type Description Notes
_links { [key: string]: Link; } [optional] [default to undefined]
_id string The member ID [optional] [default to undefined]
email string The member email [optional] [default to undefined]
firstName string The member first name [optional] [default to undefined]
lastName string The member last name [optional] [default to undefined]

Example

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

const instance: MemberDataRep = {
    _links,
    _id,
    email,
    firstName,
    lastName,
};

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