toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final enforcementMode = this.enforcementMode;
final etag = this.etag;
final name = this.name;
final targetResource = this.targetResource;
final updateTime = this.updateTime;
return {
'enforcementMode': ?enforcementMode,
'etag': ?etag,
'name': ?name,
'targetResource': ?targetResource,
'updateTime': ?updateTime,
};
}