Class: Aws::Pinpoint::Types::GPSCoordinates
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pinpoint::Types::GPSCoordinates
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-pinpoint/types.rb
Overview
Note:
When making an API call, you may pass GPSCoordinates data as a hash:
{
latitude: 1.0, # required
longitude: 1.0, # required
}
Specifies the GPS coordinates of a location.
Instance Attribute Summary collapse
-
#latitude ⇒ Float
The latitude coordinate of the location.
-
#longitude ⇒ Float
The longitude coordinate of the location.
Instance Attribute Details
#latitude ⇒ Float
The latitude coordinate of the location.
7805 7806 7807 7808 7809 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 7805 class GPSCoordinates < Struct.new( :latitude, :longitude) include Aws::Structure end |
#longitude ⇒ Float
The longitude coordinate of the location.
7805 7806 7807 7808 7809 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 7805 class GPSCoordinates < Struct.new( :latitude, :longitude) include Aws::Structure end |