DeleteIAMPolicyAssignmentResponse.fromJson constructor

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

Implementation

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