toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final allowedDomainsSettings = this.allowedDomainsSettings;
final corsSettings = this.corsSettings;
final gcipSettings = this.gcipSettings;
final identitySources = this.identitySources;
final oauthSettings = this.oauthSettings;
final policyDelegationSettings = this.policyDelegationSettings;
final reauthSettings = this.reauthSettings;
final workforceIdentitySettings = this.workforceIdentitySettings;
return {
'allowedDomainsSettings': ?allowedDomainsSettings,
'corsSettings': ?corsSettings,
'gcipSettings': ?gcipSettings,
'identitySources': ?identitySources,
'oauthSettings': ?oauthSettings,
'policyDelegationSettings': ?policyDelegationSettings,
'reauthSettings': ?reauthSettings,
'workforceIdentitySettings': ?workforceIdentitySettings,
};
}