toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final additionalService = this.additionalService;
  final googleWorkspaceCustomerId = this.googleWorkspaceCustomerId;
  final ownerCompanyId = this.ownerCompanyId;
  final resellerId = this.resellerId;
  final sectionType = this.sectionType;
  final vacationModeExpireTime = this.vacationModeExpireTime;
  final vacationModeStartTime = this.vacationModeStartTime;
  return {
    'additionalService': ?additionalService,
    'googleWorkspaceCustomerId': ?googleWorkspaceCustomerId,
    'ownerCompanyId': ?ownerCompanyId,
    'resellerId': ?resellerId,
    'sectionType': ?sectionType,
    'vacationModeExpireTime': ?vacationModeExpireTime,
    'vacationModeStartTime': ?vacationModeStartTime,
  };
}