VLDFitness

@interface VLDFitness : VLDRecord

Fitness records return data for activities that are undertaken with the express purpose of exercising. These activities have a defined duration (time, distance, elevation, etc.).

  • Type of fitness activity: Walking, Running, Swimming, etc.

    Declaration

    Objective-C

    @property (nonatomic, copy, nullable) NSString *type
  • Subjective intensity with which an activity was performed. Examples are: low, medium, high. Returned as provided by source

    Declaration

    Objective-C

    @property (nonatomic, copy, nullable) NSString *intensity
  • Timestamp of when fitness activity started in ISO08601 format

    Declaration

    Objective-C

    @property (nonatomic, strong, nullable) NSDate *startTime
  • Distance in meters

    Declaration

    Objective-C

    @property (nonatomic, strong, nullable) NSNumber *distance
  • Duration of fitness activity in seconds

    Declaration

    Objective-C

    @property (nonatomic, strong, nullable) NSNumber *duration
  • Calories burned during fitness activity

    Declaration

    Objective-C

    @property (nonatomic, strong, nullable) NSNumber *calories