DeletePullRequestApprovalRuleOutput.fromJson constructor

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

Implementation

factory DeletePullRequestApprovalRuleOutput.fromJson(
    Map<String, dynamic> json) {
  return DeletePullRequestApprovalRuleOutput(
    approvalRuleId: json['approvalRuleId'] as String,
  );
}