public INStartWorkoutIntent(INSpeakableString workoutName, NSNumber goalValue, INWorkoutGoalUnitType workoutGoalUnitType, INWorkoutLocationType workoutLocationType, bool?isOpenEnded) :
     this(workoutName, goalValue, workoutGoalUnitType, workoutLocationType, isOpenEnded.HasValue ? new NSNumber(isOpenEnded.Value) : null)
 {
 }
 public INSetCarLockStatusIntent(bool?locked, INSpeakableString carName) :
     this(locked.HasValue ? new NSNumber(locked.Value) : null, carName)
 {
 }