Method: Google::Api::LabelDescriptor#value_type
- Defined in:
- proto_docs/google/api/label.rb
permalink #value_type ⇒ ::Google::Api::LabelDescriptor::ValueType
Returns The type of data that can be assigned to the label.
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
# File 'proto_docs/google/api/label.rb', line 32 class LabelDescriptor include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Value types that can be used as label values. module ValueType # A variable-length string. This is the default. STRING = 0 # Boolean; true or false. BOOL = 1 # A 64-bit signed integer. INT64 = 2 end end |