toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final computeEngineFinding = this.computeEngineFinding;
final description = this.description;
final displayName = this.displayName;
final machinePreferences = this.machinePreferences;
final monthlyCostCompute = this.monthlyCostCompute;
final monthlyCostNetworkEgress = this.monthlyCostNetworkEgress;
final monthlyCostOsLicense = this.monthlyCostOsLicense;
final monthlyCostOther = this.monthlyCostOther;
final monthlyCostStorage = this.monthlyCostStorage;
final monthlyCostTotal = this.monthlyCostTotal;
final soleTenantFinding = this.soleTenantFinding;
final vmwareEngineFinding = this.vmwareEngineFinding;
return {
'computeEngineFinding': ?computeEngineFinding,
'description': ?description,
'displayName': ?displayName,
'machinePreferences': ?machinePreferences,
'monthlyCostCompute': ?monthlyCostCompute,
'monthlyCostNetworkEgress': ?monthlyCostNetworkEgress,
'monthlyCostOsLicense': ?monthlyCostOsLicense,
'monthlyCostOther': ?monthlyCostOther,
'monthlyCostStorage': ?monthlyCostStorage,
'monthlyCostTotal': ?monthlyCostTotal,
'soleTenantFinding': ?soleTenantFinding,
'vmwareEngineFinding': ?vmwareEngineFinding,
};
}