File tree Expand file tree Collapse file tree 3 files changed +14
-1
lines changed Expand file tree Collapse file tree 3 files changed +14
-1
lines changed Original file line number Diff line number Diff line change 6
6
"uuidv4" : " 00000000-0000-4839-af2f-f794874a80b0" ,
7
7
"name" : " SomeApplication" ,
8
8
"webhookurl" : " https://webhook.site/00000000-0000-4e34-8112-c4391247a8ee" ,
9
+ "redirecturis" : [
10
+ " https://redirect.site/00000000-0000-4e34-8112-c4391247a8ee" ,
11
+ " https://redirect.site/00000000-4e34-0000-8112-c4391247a8ee"
12
+ ],
9
13
"disabled" : 0
10
14
},
11
15
"call" : {
Original file line number Diff line number Diff line change @@ -18,6 +18,11 @@ internal static class MiscFixtures
18
18
Uuidv4 = "00000000-0000-4839-af2f-f794874a80b0" ,
19
19
Name = "SomeApplication" ,
20
20
WebhookUrl = "https://webhook.site/00000000-0000-4e34-8112-c4391247a8ee" ,
21
+ RedirectUris = new List < string >
22
+ {
23
+ "https://redirect.site/00000000-0000-4e34-8112-c4391247a8ee" ,
24
+ "https://redirect.site/00000000-4e34-0000-8112-c4391247a8ee"
25
+ } ,
21
26
Disabled = 0
22
27
} ,
23
28
Call = new XummCall
Original file line number Diff line number Diff line change 1
- using System . Text . Json . Serialization ;
1
+ using System . Collections . Generic ;
2
+ using System . Text . Json . Serialization ;
2
3
3
4
namespace XUMM . NET . SDK . Models . Misc
4
5
{
@@ -16,6 +17,9 @@ public class XummApplication
16
17
[ JsonPropertyName ( "webhookurl" ) ]
17
18
public string ? WebhookUrl { get ; set ; }
18
19
20
+ [ JsonPropertyName ( "redirecturis" ) ]
21
+ public List < string > RedirectUris { get ; set ; } = new ( ) ;
22
+
19
23
[ JsonPropertyName ( "disabled" ) ]
20
24
public int Disabled { get ; set ; }
21
25
You can’t perform that action at this time.
0 commit comments