Fields

Fields
ParameterDescription
name
String
requiredThe name of the Microsoft Team. Example: "Account XYZ Team."
description
String
requiredA brief description of the Microsoft Team being created. Example: "Team for managing all activities related to Account XYZ."
templateId
String
requiredThe 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.
teamId
String
requiredThe 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;
}