1
0
Fork 0

add additional properties support

This commit is contained in:
Cyborus 2024-01-18 16:27:05 -05:00
parent d9f51681df
commit cfd12a6306
No known key found for this signature in database
3 changed files with 13 additions and 1 deletions

View file

@ -7870,7 +7870,10 @@ pub mod structs {
/// required are "content_type" and "url" Required
///
#[derive(Debug, Clone, PartialEq, serde::Serialize, serde::Deserialize)]
pub struct CreateHookOptionConfig {}
pub struct CreateHookOptionConfig {
#[serde(flatten)]
pub additional: std::collections::BTreeMap<String, String>,
}
/// CreateIssueCommentOption options for creating a comment on an issue
///