strengthWorkoutProgress element
| Type: | strengthWorkoutProgress | 
| Namespace: | http://api.lfopen.lfconnect.com/v1/workoutresult | 
| XML Schema: | workoutresult.xsd | 
Example XML
<?xml version="1.0" encoding="UTF-8"?>
<strengthWorkoutProgress xmlns="http://api.lfopen.lfconnect.com/v1/workoutresult">
  <strengthDataDetails xmlns="">
    <repetitionsCount>...</repetitionsCount>
    <resistanceWeight>...</resistanceWeight>
    <setNumber>...</setNumber>
  </strengthDataDetails>
  <strengthDataDetails xmlns="">
    <!--...-->
  </strengthDataDetails>
  <!--...more "strengthDataDetails" elements...-->
  <calorie xmlns="">...</calorie>
  <date xmlns="">...</date>
</strengthWorkoutProgress>
      Example JSON
{
  "strengthDataDetails" : [ {
    "repetitionsCount" : ...,
    "resistanceWeight" : ...,
    "setNumber" : ...
  }, ... ],
  "calorie" : ...,
  "date" : "..."
}