You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Should the xumm app submit to the XRPL after signing? (Optional)
8
+
/// (Optional) Should the xumm app submit to the XRPL after signing?
9
9
/// </summary>
10
10
[JsonPropertyName("submit")]
11
11
publicbool?Submit{get;set;}
12
12
13
13
/// <summary>
14
-
/// Allow pathfinding for regular Payment type transactions, so the user can select the asset to send to deliver the requested asset amount.
14
+
/// (Optional) Allow pathfinding for regular Payment type transactions, so the user can select the asset to send to deliver the requested asset amount.
15
15
/// </summary>
16
16
[JsonPropertyName("pathfinding")]
17
17
publicbool?Pathfinding{get;set;}
18
18
19
19
/// <summary>
20
-
/// Should the transaction be signed as a multi sign transaction? (Optional)
20
+
/// (Optional) Allow Xumm clients < version 2.4.0 to fall back from modern pathfinding UX to a native 1:1 asset payment.
21
+
/// </summary>
22
+
[JsonPropertyName("pathfinding_fallback")]
23
+
publicbool?PathfindingFallback{get;set;}
24
+
25
+
/// <summary>
26
+
/// (Optional) Should the transaction be signed as a multi sign transaction?
21
27
/// </summary>
22
28
[JsonPropertyName("multisign")]
23
29
publicbool?MultiSign{get;set;}
24
30
25
31
/// <summary>
26
-
/// After how many minutes should the payload expire? (Optional)
32
+
/// (Optional) After how many minutes should the payload expire?
27
33
/// </summary>
28
34
[JsonPropertyName("expire")]
29
35
publicintExpire{get;set;}
30
36
31
37
/// <summary>
32
-
/// Force any of the provided accounts to sign. (Optional)
38
+
/// (Optional) Force any of the provided accounts to sign.
33
39
/// </summary>
34
40
[JsonPropertyName("signers")]
35
41
publicstring[]?Signers{get;set;}
36
42
37
43
/// <summary>
38
-
/// Where should the user be redirected to after resolving the payload? (Optional)
44
+
/// (Optional) When set, the payload can only be opened by a device connected to the specified network. Xumm 2.5.0 and higher required.
45
+
/// </summary>
46
+
[JsonPropertyName("force_network")]
47
+
publicstring?ForceNetwork{get;set;}
48
+
49
+
/// <summary>
50
+
/// (Optional) Where should the user be redirected to after resolving the payload?
0 commit comments