toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final auditIntervalSeconds = this.auditIntervalSeconds;
  final enabled = this.enabled;
  final exemptableNamespaces = this.exemptableNamespaces;
  final logDeniesEnabled = this.logDeniesEnabled;
  final monitoring = this.monitoring;
  final mutationEnabled = this.mutationEnabled;
  final referentialRulesEnabled = this.referentialRulesEnabled;
  final templateLibraryInstalled = this.templateLibraryInstalled;
  final updateTime = this.updateTime;
  return {
    'auditIntervalSeconds': ?auditIntervalSeconds,
    'enabled': ?enabled,
    'exemptableNamespaces': ?exemptableNamespaces,
    'logDeniesEnabled': ?logDeniesEnabled,
    'monitoring': ?monitoring,
    'mutationEnabled': ?mutationEnabled,
    'referentialRulesEnabled': ?referentialRulesEnabled,
    'templateLibraryInstalled': ?templateLibraryInstalled,
    'updateTime': ?updateTime,
  };
}