toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final excludeExportRanges = this.excludeExportRanges;
final excludeImportRanges = this.excludeImportRanges;
final includeExportRanges = this.includeExportRanges;
final includeImportRanges = this.includeImportRanges;
final instances = this.instances;
final siteToSiteDataTransfer = this.siteToSiteDataTransfer;
final vpcNetwork = this.vpcNetwork;
return {
'excludeExportRanges': ?excludeExportRanges,
'excludeImportRanges': ?excludeImportRanges,
'includeExportRanges': ?includeExportRanges,
'includeImportRanges': ?includeImportRanges,
'instances': ?instances,
'siteToSiteDataTransfer': ?siteToSiteDataTransfer,
'vpcNetwork': ?vpcNetwork,
};
}