toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final adcApplication = this.adcApplication;
final adcApplicationTemplate = this.adcApplicationTemplate;
final adcSharedTemplate = this.adcSharedTemplate;
final application = this.application;
final awsMetadata = this.awsMetadata;
final azureMetadata = this.azureMetadata;
final cloudProvider = this.cloudProvider;
final displayName = this.displayName;
final folders = this.folders;
final location = this.location;
final name = this.name;
final organization = this.organization;
final parentDisplayName = this.parentDisplayName;
final parentName = this.parentName;
final projectDisplayName = this.projectDisplayName;
final projectName = this.projectName;
final resourcePath = this.resourcePath;
final resourcePathString = this.resourcePathString;
final service = this.service;
final type = this.type;
return {
'adcApplication': ?adcApplication,
'adcApplicationTemplate': ?adcApplicationTemplate,
'adcSharedTemplate': ?adcSharedTemplate,
'application': ?application,
'awsMetadata': ?awsMetadata,
'azureMetadata': ?azureMetadata,
'cloudProvider': ?cloudProvider,
'displayName': ?displayName,
'folders': ?folders,
'location': ?location,
'name': ?name,
'organization': ?organization,
'parentDisplayName': ?parentDisplayName,
'parentName': ?parentName,
'projectDisplayName': ?projectDisplayName,
'projectName': ?projectName,
'resourcePath': ?resourcePath,
'resourcePathString': ?resourcePathString,
'service': ?service,
'type': ?type,
};
}