Skip to content

Latest commit

 

History

History
32 lines (25 loc) · 1.35 KB

File metadata and controls

32 lines (25 loc) · 1.35 KB

TeamPostInput

Properties

Name Type Description Notes
customRoleKeys Array<string> List of custom role keys the team will access [optional] [default to undefined]
description string A description of the team [optional] [default to undefined]
key string The team key [default to undefined]
memberIDs Array<string> A list of member IDs who belong to the team [optional] [default to undefined]
name string A human-friendly name for the team [default to undefined]
permissionGrants Array<PermissionGrantInput> A list of permission grants. Permission grants allow access to a specific action, without having to create or update a custom role. [optional] [default to undefined]
roleAttributes { [key: string]: Array<string>; } [optional] [default to undefined]

Example

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

const instance: TeamPostInput = {
    customRoleKeys,
    description,
    key,
    memberIDs,
    name,
    permissionGrants,
    roleAttributes,
};

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