Fields
Fields
| Parameter | Description | |
|---|---|---|
nameString |
required | The name of the Microsoft Team. Example: "Account XYZ Team." |
descriptionString |
required | A brief description of the Microsoft Team being created. Example: "Team for managing all activities related to Account XYZ." |
templateIdString |
required | The Id of an existing Microsoft Team to use as a template for creating the new Team. If provided, the new Team will inherit the structure and settings of the specified Team. |
teamIdString |
required | The Id of a predefined Microsoft Team template to use. If provided, the new Team will follow the structure defined by the template. |
Constructors
global CreateMicrosoftTeamInput( String name, String description, String templateId, String teamId ) { this.name = name; this.description = description; this.templateId = templateId; this.teamId = teamId; }