toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final deviceId = this.deviceId;
  final deviceIdentifier = this.deviceIdentifier;
  final sectionType = this.sectionType;
  final vacationModeDays = this.vacationModeDays;
  final vacationModeExpireTime = this.vacationModeExpireTime;
  return {
    'deviceId': ?deviceId,
    'deviceIdentifier': ?deviceIdentifier,
    'sectionType': ?sectionType,
    'vacationModeDays': ?vacationModeDays,
    'vacationModeExpireTime': ?vacationModeExpireTime,
  };
}