Skip to content

Commit d47c146

Browse files
committed
Merge branch 'feature/src-bot' into feature/sample
2 parents 544fc62 + 8913b41 commit d47c146

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/objects/action.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ use serde_derive::Serialize;
33
#[derive(Serialize, Debug)]
44
pub struct Action {
55
#[serde(flatten)]
6-
r#type: ActionType,
6+
pub r#type: ActionType,
77
#[serde(skip_serializing_if = "Option::is_none")]
8-
label: Option<String>,
8+
pub label: Option<String>,
99
}
1010

1111
#[derive(Serialize, Debug)]
@@ -48,5 +48,5 @@ pub enum ActionType {
4848

4949
#[derive(Serialize, Debug)]
5050
pub struct AltUri {
51-
desktop: String,
51+
pub desktop: String,
5252
}

0 commit comments

Comments
 (0)