We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 46c6497 + d47c146 commit 5ab072aCopy full SHA for 5ab072a
src/objects/action.rs
@@ -9,9 +9,9 @@ use serde_derive::Serialize;
9
#[derive(Serialize, Debug)]
10
pub struct Action {
11
#[serde(flatten)]
12
- r#type: ActionType,
+ pub r#type: ActionType,
13
#[serde(skip_serializing_if = "Option::is_none")]
14
- label: Option<String>,
+ pub label: Option<String>,
15
}
16
17
/// Action object types
@@ -58,5 +58,5 @@ pub enum ActionType {
58
/// URI opened on LINE for macOS and Windows when the action is performed.
59
60
pub struct AltUri {
61
- desktop: String,
+ pub desktop: String,
62
0 commit comments