Departments property

PropertyDefinition Departments
getter/setter pair
Defines the Departments property.

Implementation

static PropertyDefinition Departments =
    new ComplexPropertyDefinition<AttributedStringCollection>.withUriAndFlags(
        XmlElementNames.Departments,
        _PersonaSchemaFieldUris.Departments,
        [
          PropertyDefinitionFlags.AutoInstantiateOnRead,
          PropertyDefinitionFlags.CanSet,
          PropertyDefinitionFlags.CanUpdate,
          PropertyDefinitionFlags.CanDelete,
          PropertyDefinitionFlags.CanFind
        ],
        ExchangeVersion.Exchange2013_SP1, () {
  return new AttributedStringCollection();
});