From 39707c005461ac797451802efe25453569430dcc Mon Sep 17 00:00:00 2001 From: Cyborus Date: Sun, 19 Nov 2023 15:25:03 -0500 Subject: [PATCH] make `CreateIssueCommentOption` and `EditIssueCommentOption` fields pub --- src/issue.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/issue.rs b/src/issue.rs index 6712e69..71f2fd5 100644 --- a/src/issue.rs +++ b/src/issue.rs @@ -338,10 +338,10 @@ pub struct EditIssueOption { #[derive(serde::Serialize, Debug, PartialEq, Default)] pub struct CreateIssueCommentOption { - body: String, + pub body: String, } #[derive(serde::Serialize, Debug, PartialEq, Default)] pub struct EditIssueCommentOption { - body: String, + pub body: String, }