OrganizationAffectedEntitiesErrorItem.fromJson constructor
Implementation
factory OrganizationAffectedEntitiesErrorItem.fromJson(
Map<String, dynamic> json) {
return OrganizationAffectedEntitiesErrorItem(
awsAccountId: json['awsAccountId'] as String?,
errorMessage: json['errorMessage'] as String?,
errorName: json['errorName'] as String?,
eventArn: json['eventArn'] as String?,
);
}