Class TagField (2.0.2)

TagField(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Contains the value and supporting information for a field within a Tag.

Attributes

NameDescription
display_name str
Output only. The display name of this field.
double_value float
Holds the value for a tag field with double type.
string_value str
Holds the value for a tag field with string type.
bool_value bool
Holds the value for a tag field with boolean type.
timestamp_value .timestamp.Timestamp
Holds the value for a tag field with timestamp type.
enum_value .tags.TagField.EnumValue
Holds the value for a tag field with enum type. This value must be one of the allowed values in the definition of this enum.
order int
Output only. The order of this field with respect to other fields in this tag. It can be set in Tag. For example, a higher value can indicate a more important field. The value can be negative. Multiple fields can have the same order, and field orders within a tag do not have to be sequential.

Classes

EnumValue

EnumValue(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Holds an enum value.