ApplicationInfo.fromJson constructor

ApplicationInfo.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory ApplicationInfo.fromJson(Map<String, dynamic> json) {
  return ApplicationInfo(
    cWEMonitorEnabled: json['CWEMonitorEnabled'] as bool?,
    lifeCycle: json['LifeCycle'] as String?,
    opsCenterEnabled: json['OpsCenterEnabled'] as bool?,
    opsItemSNSTopicArn: json['OpsItemSNSTopicArn'] as String?,
    remarks: json['Remarks'] as String?,
    resourceGroupName: json['ResourceGroupName'] as String?,
  );
}