toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final accessRestrictions = this.accessRestrictions;
final additionalTargetKeyNames = this.additionalTargetKeyNames;
final categoryTitle = this.categoryTitle;
final definition = this.definition;
final fieldDescriptions = this.fieldDescriptions;
final name = this.name;
final notices = this.notices;
final policyApiLifecycle = this.policyApiLifecycle;
final policyDescription = this.policyDescription;
final schemaName = this.schemaName;
final supportUri = this.supportUri;
final supportedPlatforms = this.supportedPlatforms;
final validTargetResources = this.validTargetResources;
return {
'accessRestrictions': ?accessRestrictions,
'additionalTargetKeyNames': ?additionalTargetKeyNames,
'categoryTitle': ?categoryTitle,
'definition': ?definition,
'fieldDescriptions': ?fieldDescriptions,
'name': ?name,
'notices': ?notices,
'policyApiLifecycle': ?policyApiLifecycle,
'policyDescription': ?policyDescription,
'schemaName': ?schemaName,
'supportUri': ?supportUri,
'supportedPlatforms': ?supportedPlatforms,
'validTargetResources': ?validTargetResources,
};
}