Class: Aws::Pinpoint::Types::GPSCoordinates

Inherits:
Struct
  • Object
show all
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,
  longitude: 1.0,
}

GPS coordinates

Instance Attribute Summary collapse

Instance Attribute Details

#latitudeFloat

Latitude

Returns:

  • (Float)


5050
5051
5052
5053
5054
# File 'lib/aws-sdk-pinpoint/types.rb', line 5050

class GPSCoordinates < Struct.new(
  :latitude,
  :longitude)
  include Aws::Structure
end

#longitudeFloat

Longitude

Returns:

  • (Float)


5050
5051
5052
5053
5054
# File 'lib/aws-sdk-pinpoint/types.rb', line 5050

class GPSCoordinates < Struct.new(
  :latitude,
  :longitude)
  include Aws::Structure
end