DescribeEntityResponse.fromJson constructor

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

Implementation

factory DescribeEntityResponse.fromJson(Map<String, dynamic> json) {
  return DescribeEntityResponse(
    details: json['Details'] as String?,
    entityArn: json['EntityArn'] as String?,
    entityIdentifier: json['EntityIdentifier'] as String?,
    entityType: json['EntityType'] as String?,
    lastModifiedDate: json['LastModifiedDate'] as String?,
  );
}