AWSLocationListDevicePositionsResponseEntry
Objective-C
@interface AWSLocationListDevicePositionsResponseEntry
Swift
class AWSLocationListDevicePositionsResponseEntry
Contains the tracker resource details.
Required parameters: [DeviceId, SampleTime, Position]
-
The accuracy of the device position.
Declaration
Objective-C
@property (nonatomic, strong) AWSLocationPositionalAccuracy *_Nullable accuracy;
Swift
var accuracy: AWSLocationPositionalAccuracy? { get set }
-
The ID of the device for this position.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable deviceId;
Swift
var deviceId: String? { get set }
-
The last known device position. Empty if no positions currently stored.
Declaration
Objective-C
@property (nonatomic, strong) NSArray<NSNumber *> *_Nullable position;
Swift
var position: [NSNumber]? { get set }
-
The properties associated with the position.
Declaration
Objective-C
@property (nonatomic, strong) NSDictionary<NSString *, NSString *> *_Nullable positionProperties;
Swift
var positionProperties: [String : String]? { get set }
-
The timestamp at which the device position was determined. Uses ISO 8601 format:
YYYY-MM-DDThh:mm:ss.sssZ
.Declaration
Objective-C
@property (nonatomic, strong) NSDate *_Nullable sampleTime;
Swift
var sampleTime: Date? { get set }