DeleteIAMPolicyAssignmentResponse.fromJson constructor
Implementation
factory DeleteIAMPolicyAssignmentResponse.fromJson(
Map<String, dynamic> json) {
return DeleteIAMPolicyAssignmentResponse(
assignmentName: json['AssignmentName'] as String?,
requestId: json['RequestId'] as String?,
);
}