@@ -51,7 +51,13 @@ public class Android
5151 public Dictionary < string , object > Inbox { get ; set ; }
5252
5353 [ JsonProperty ( "big_pic_path" , NullValueHandling = NullValueHandling . Ignore ) ]
54- public string BigPicturePath { get ; set ; }
54+ public string BigPicturePath { get ; set ; }
55+
56+ [ JsonProperty ( "large_icon" , NullValueHandling = NullValueHandling . Ignore ) ]
57+ public string LargeIcon { get ; set ; }
58+
59+ [ JsonProperty ( "intent" , NullValueHandling = NullValueHandling . Ignore ) ]
60+ public Dictionary < string , object > Indent { get ; set ; }
5561
5662 [ JsonProperty ( "extras" , NullValueHandling = NullValueHandling . Ignore ) ]
5763 public Dictionary < string , object > Extras { get ; set ; }
@@ -60,7 +66,19 @@ public class Android
6066 /// (VIP only)指定开发者想要打开的 Activity,值为 <activity> 节点的 "android:name" 属性值。
6167 /// </summary>
6268 [ JsonProperty ( "uri_activity" , NullValueHandling = NullValueHandling . Ignore ) ]
63- public string URIActivity { get ; set ; }
69+ public string URIActivity { get ; set ; }
70+
71+ /// <summary>
72+ /// (VIP only)指定打开 Activity 的方式,值为 Intent.java 中预定义的 "access flags" 的取值范围。
73+ /// </summary>
74+ [ JsonProperty ( "uri_flag" , NullValueHandling = NullValueHandling . Ignore ) ]
75+ public string URIFlag { get ; set ; }
76+
77+ /// <summary>
78+ /// (VIP only)指定开发者想要打开的 Activity,值为 <activity> -> <intent-filter> -> <action> 节点中的 "android:name" 属性值。
79+ /// </summary>
80+ [ JsonProperty ( "uri_action" , NullValueHandling = NullValueHandling . Ignore ) ]
81+ public string URIAction { get ; set ; }
6482 }
6583
6684 public class IOS
0 commit comments