Class: Aws::GeoPlaces::Types::Contacts
- Inherits:
-
Struct
- Object
- Struct
- Aws::GeoPlaces::Types::Contacts
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-geoplaces/types.rb
Overview
A list of potential contact methods for the result/place.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#emails ⇒ Array<Types::ContactDetails>
List of emails for contacts of the result.
-
#faxes ⇒ Array<Types::ContactDetails>
List of fax addresses for the result contact.
-
#phones ⇒ Array<Types::ContactDetails>
List of phone numbers for the results contact.
-
#websites ⇒ Array<Types::ContactDetails>
List of website URLs that belong to the result.
Instance Attribute Details
#emails ⇒ Array<Types::ContactDetails>
List of emails for contacts of the result.
752 753 754 755 756 757 758 759 |
# File 'lib/aws-sdk-geoplaces/types.rb', line 752 class Contacts < Struct.new( :phones, :faxes, :websites, :emails) SENSITIVE = [] include Aws::Structure end |
#faxes ⇒ Array<Types::ContactDetails>
List of fax addresses for the result contact.
752 753 754 755 756 757 758 759 |
# File 'lib/aws-sdk-geoplaces/types.rb', line 752 class Contacts < Struct.new( :phones, :faxes, :websites, :emails) SENSITIVE = [] include Aws::Structure end |
#phones ⇒ Array<Types::ContactDetails>
List of phone numbers for the results contact.
752 753 754 755 756 757 758 759 |
# File 'lib/aws-sdk-geoplaces/types.rb', line 752 class Contacts < Struct.new( :phones, :faxes, :websites, :emails) SENSITIVE = [] include Aws::Structure end |
#websites ⇒ Array<Types::ContactDetails>
List of website URLs that belong to the result.
752 753 754 755 756 757 758 759 |
# File 'lib/aws-sdk-geoplaces/types.rb', line 752 class Contacts < Struct.new( :phones, :faxes, :websites, :emails) SENSITIVE = [] include Aws::Structure end |