toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final managementGroups = this.managementGroups;
final resourceGroup = this.resourceGroup;
final subscription = this.subscription;
final tenant = this.tenant;
return {
'managementGroups': ?managementGroups,
'resourceGroup': ?resourceGroup,
'subscription': ?subscription,
'tenant': ?tenant,
};
}