LaunchDarklyApi::TeamPostInput Properties Name Type Description Notes custom_role_keys Array<String> List of custom role keys the team will access [optional] description String A description of the team [optional] key String The team key member_ids Array<String> A list of member IDs who belong to the team [optional] name String A human-friendly name for the team permission_grants 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] Example require 'launchdarkly_api' instance = LaunchDarklyApi::TeamPostInput.new( custom_role_keys: ["example-role1","example-role2"], description: An example team, key: example-team, member_ids: ["12ab3c45de678910fgh12345"], name: Example team, permission_grants: null )