Skip to content

Commit 5ab072a

Browse files
committed
Merge branch 'feature/sample' into feature/doc
2 parents 46c6497 + d47c146 commit 5ab072a

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
@@ -9,9 +9,9 @@ use serde_derive::Serialize;
99
#[derive(Serialize, Debug)]
1010
pub struct Action {
1111
#[serde(flatten)]
12-
r#type: ActionType,
12+
pub r#type: ActionType,
1313
#[serde(skip_serializing_if = "Option::is_none")]
14-
label: Option<String>,
14+
pub label: Option<String>,
1515
}
1616

1717
/// Action object types
@@ -58,5 +58,5 @@ pub enum ActionType {
5858
/// URI opened on LINE for macOS and Windows when the action is performed.
5959
#[derive(Serialize, Debug)]
6060
pub struct AltUri {
61-
desktop: String,
61+
pub desktop: String,
6262
}

0 commit comments

Comments
 (0)