Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 753 Bytes

File metadata and controls

25 lines (17 loc) · 753 Bytes

PersonTeamRelationship

The team member's relationship to the team. This defaults to MEMBER if not set.

Example Usage

import com.glean.api_client.glean_api_client.models.components.PersonTeamRelationship;

PersonTeamRelationship value = PersonTeamRelationship.MEMBER;

// Open enum: use .of() to create instances from custom string values
PersonTeamRelationship custom = PersonTeamRelationship.of("custom_value");

Values

Name Value
MEMBER MEMBER
MANAGER MANAGER
LEAD LEAD
POINT_OF_CONTACT POINT_OF_CONTACT
OTHER OTHER