displayName property
The folder's display name.
A folder's display name must be unique amongst its siblings. For example,
no two folders with the same parent can share the same display name. The
display name must start and end with a letter or digit, may contain
letters, digits, spaces, hyphens and underscores and can be no longer than
30 characters. This is captured by the regular expression:
[\p{L}\p{N}]([\p{L}\p{N}_- ]{0,28}[\p{L}\p{N}])?
.
Implementation
core.String? displayName;