Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 991 Bytes

MemberSummary.md

File metadata and controls

28 lines (22 loc) · 991 Bytes

LaunchDarklyApi::MemberSummary

Properties

Name Type Description Notes
_links Hash<String, Link> The location and content type of related resources
_id String The member's ID
first_name String The member's first name [optional]
last_name String The member's last name [optional]
role String The member's built-in role. If the member has no custom roles, this role will be in effect.
email String The member's email address

Example

require 'launchdarkly_api'

instance = LaunchDarklyApi::MemberSummary.new(
  _links: {&quot;self&quot;:{&quot;href&quot;:&quot;/api/v2/members/569f183514f4432160000007&quot;,&quot;type&quot;:&quot;application/json&quot;}},
  _id: 569f183514f4432160000007,
  first_name: Ariel,
  last_name: Flores,
  role: admin,
  email: ariel@acme.com
)