toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final conformantResourcesCount = this.conformantResourcesCount;
final evaluationErrorsCount = this.evaluationErrorsCount;
final outOfScopeResourcesCount = this.outOfScopeResourcesCount;
final policyViolationsCount = this.policyViolationsCount;
return {
'conformantResourcesCount': ?conformantResourcesCount,
'evaluationErrorsCount': ?evaluationErrorsCount,
'outOfScopeResourcesCount': ?outOfScopeResourcesCount,
'policyViolationsCount': ?policyViolationsCount,
};
}