toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final collectionIds = this.collectionIds;
final namespaceIds = this.namespaceIds;
final outputUriPrefix = this.outputUriPrefix;
final snapshotTime = this.snapshotTime;
return {
'collectionIds': ?collectionIds,
'namespaceIds': ?namespaceIds,
'outputUriPrefix': ?outputUriPrefix,
'snapshotTime': ?snapshotTime,
};
}