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.
1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 |
# File 'proto_docs/google/cloud/datacatalog/v1/datacatalog.rb', line 1036 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 |