toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final customActionTimeoutMins = this.customActionTimeoutMins;
  final daysOfWeek = this.daysOfWeek;
  final hoursOfDay = this.hoursOfDay;
  final isCustomActionTimeoutEnabled = this.isCustomActionTimeoutEnabled;
  final leadTimeWeek = this.leadTimeWeek;
  final months = this.months;
  final patchingMode = this.patchingMode;
  final preference = this.preference;
  final weeksOfMonth = this.weeksOfMonth;
  return {
    'customActionTimeoutMins': ?customActionTimeoutMins,
    'daysOfWeek': ?daysOfWeek,
    'hoursOfDay': ?hoursOfDay,
    'isCustomActionTimeoutEnabled': ?isCustomActionTimeoutEnabled,
    'leadTimeWeek': ?leadTimeWeek,
    'months': ?months,
    'patchingMode': ?patchingMode,
    'preference': ?preference,
    'weeksOfMonth': ?weeksOfMonth,
  };
}