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)


4980
4981
4982
4983
4984
# File 'lib/aws-sdk-pinpoint/types.rb', line 4980

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

#longitudeFloat

Longitude

Returns:

  • (Float)


4980
4981
4982
4983
4984
# File 'lib/aws-sdk-pinpoint/types.rb', line 4980

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