Class: Google::Cloud::DataCatalog::V1::Contacts
- Inherits:
-
Object
- Object
- Google::Cloud::DataCatalog::V1::Contacts
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/datacatalog/v1/datacatalog.rb
Overview
Contact people for the entry.
Defined Under Namespace
Classes: Person
Instance Attribute Summary collapse
-
#people ⇒ ::Array<::Google::Cloud::DataCatalog::V1::Contacts::Person>
The list of contact people for the entry.
Instance Attribute Details
#people ⇒ ::Array<::Google::Cloud::DataCatalog::V1::Contacts::Person>
Returns The list of contact people for the entry.
1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 |
# File 'proto_docs/google/cloud/datacatalog/v1/datacatalog.rb', line 1116 class Contacts include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # A contact person for the entry. # @!attribute [rw] designation # @return [::String] # Designation of the person, for example, Data Steward. # @!attribute [rw] email # @return [::String] # Email of the person in the format of `john.doe@xyz`, # `<john.doe@xyz>`, or `John Doe<john.doe@xyz>`. class Person include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |