name property

String? name
getter/setter pair

Name of the type.

It must be unique within the schema file and cannot be a "Common Type". The following naming conventions are used: - Use snake_casing. - Name matching is case-sensitive. - Maximum 64 characters. - Must start with a letter. - Allowed characters: ASCII letters [a-z0-9_-]. (For backward compatibility, internal infrastructure and tooling can handle any ASCII character.) - The / is sometimes used to denote a property of a type. For example, line_item/amount. This convention is deprecated, but will still be honored for backward compatibility.

Implementation

core.String? name;