toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final accessLevels = this.accessLevels;
final dryRunAccessLevels = this.dryRunAccessLevels;
final groupKey = this.groupKey;
final name = this.name;
final restrictedClientApplications = this.restrictedClientApplications;
final scopedAccessSettings = this.scopedAccessSettings;
final sessionSettings = this.sessionSettings;
return {
'accessLevels': ?accessLevels,
'dryRunAccessLevels': ?dryRunAccessLevels,
'groupKey': ?groupKey,
'name': ?name,
'restrictedClientApplications': ?restrictedClientApplications,
'scopedAccessSettings': ?scopedAccessSettings,
'sessionSettings': ?sessionSettings,
};
}