DescribeIAMPolicyAssignmentResponse.fromJson constructor
Implementation
factory DescribeIAMPolicyAssignmentResponse.fromJson(
Map<String, dynamic> json) {
return DescribeIAMPolicyAssignmentResponse(
iAMPolicyAssignment: json['IAMPolicyAssignment'] != null
? IAMPolicyAssignment.fromJson(
json['IAMPolicyAssignment'] as Map<String, dynamic>)
: null,
requestId: json['RequestId'] as String?,
);
}