toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final catalogPublishingEnabled = this.catalogPublishingEnabled;
final postScanActions = this.postScanActions;
final rowFilter = this.rowFilter;
final rules = this.rules;
final samplingPercent = this.samplingPercent;
return {
'catalogPublishingEnabled': ?catalogPublishingEnabled,
'postScanActions': ?postScanActions,
'rowFilter': ?rowFilter,
'rules': ?rules,
'samplingPercent': ?samplingPercent,
};
}