ReminderDueBy property 
    
      
      
  
Defines the AllowedResponseActions property.
Defines the ReminderDueBy property.
      
  Implementation
  // static PropertyDefinition AllowedResponseActions =
//            new ResponseObjectsPropertyDefinition(
//                XmlElementNames.ResponseObjects,
//                ItemSchemaFieldUris.ResponseObjects,
//                ExchangeVersion.Exchange2007_SP1);
/// <summary>
/// Defines the ReminderDueBy property.
/// </summary>
static PropertyDefinition ReminderDueBy = new ScopedDateTimePropertyDefinition.withUriAndFlags(
    XmlElementNames.ReminderDueBy,
    _ItemSchemaFieldUris.ReminderDueBy,
    [
      PropertyDefinitionFlags.CanSet,
      PropertyDefinitionFlags.CanUpdate,
      PropertyDefinitionFlags.CanFind
    ],
    ExchangeVersion.Exchange2007_SP1, (ExchangeVersion version) {
  return AppointmentSchema.StartTimeZone;
});