toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final expirationTime = this.expirationTime;
  final startTime = this.startTime;
  final timeZone = this.timeZone;
  final vmStartSchedule = this.vmStartSchedule;
  final vmStopSchedule = this.vmStopSchedule;
  return {
    'expirationTime': ?expirationTime,
    'startTime': ?startTime,
    'timeZone': ?timeZone,
    'vmStartSchedule': ?vmStartSchedule,
    'vmStopSchedule': ?vmStopSchedule,
  };
}