Skip to content

Commit

Permalink
make some fields to public (#708)
Browse files Browse the repository at this point in the history
  • Loading branch information
matilda-ray-kerria authored Oct 9, 2024
1 parent 42af5be commit 89256f9
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/models/timelines.rs
Original file line number Diff line number Diff line change
Expand Up @@ -88,24 +88,24 @@ pub struct TimelineEvent {
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[non_exhaustive]
pub struct DismissedReview {
state: pulls::ReviewState,
review_id: ReviewId,
dismissal_message: Option<String>,
dismissal_commit_id: Option<String>,
pub state: pulls::ReviewState,
pub review_id: ReviewId,
pub dismissal_message: Option<String>,
pub dismissal_commit_id: Option<String>,
}

#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[non_exhaustive]
pub struct Source {
issue: issues::Issue,
r#type: String,
pub issue: issues::Issue,
pub r#type: String,
}

#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[non_exhaustive]
pub struct Rename {
from: String,
to: String,
pub from: String,
pub to: String,
}

#[derive(Debug, Clone, Hash, Eq, PartialEq, Serialize, Deserialize)]
Expand Down

0 comments on commit 89256f9

Please sign in to comment.