Class: Google::Cloud::DataCatalog::V1::Contacts

Inherits:
Object
  • Object
show all
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

Instance Attribute Details

#people::Array<::Google::Cloud::DataCatalog::V1::Contacts::Person>

Returns The list of contact people for the entry.

Returns:



895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
# File 'proto_docs/google/cloud/datacatalog/v1/datacatalog.rb', line 895

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