Class: Google::Api::TypeReference
- Inherits:
-
Object
- Object
- Google::Api::TypeReference
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/api/field_info.rb
Overview
A reference to a message type, for use in FieldInfo.
Instance Attribute Summary collapse
-
#type_name ⇒ ::String
The name of the type that the annotated, generic field may represent.
Instance Attribute Details
#type_name ⇒ ::String
Returns The name of the type that the annotated, generic field may represent.
If the type is in the same protobuf package, the value can be the simple
message name e.g., "MyMessage"
. Otherwise, the value must be the
fully-qualified message name e.g., "google.library.v1.Book"
.
If the type(s) are unknown to the service (e.g. the field accepts generic
user input), use the wildcard "*"
to denote this behavior.
See AIP-202 for more details.
83 84 85 86 |
# File 'proto_docs/google/api/field_info.rb', line 83 class TypeReference include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |