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.
1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 |
# File 'proto_docs/google/cloud/datacatalog/v1/datacatalog.rb', line 1070 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 |