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 66 "uuidv4" : " 00000000-0000-4839-af2f-f794874a80b0" ,
77 "name" : " SomeApplication" ,
88 "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+ ],
913 "disabled" : 0
1014 },
1115 "call" : {
Original file line number Diff line number Diff line change @@ -18,6 +18,11 @@ internal static class MiscFixtures
1818 Uuidv4 = "00000000-0000-4839-af2f-f794874a80b0" ,
1919 Name = "SomeApplication" ,
2020 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+ } ,
2126 Disabled = 0
2227 } ,
2328 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 ;
23
34namespace XUMM . NET . SDK . Models . Misc
45{
@@ -16,6 +17,9 @@ public class XummApplication
1617 [ JsonPropertyName ( "webhookurl" ) ]
1718 public string ? WebhookUrl { get ; set ; }
1819
20+ [ JsonPropertyName ( "redirecturis" ) ]
21+ public List < string > RedirectUris { get ; set ; } = new ( ) ;
22+
1923 [ JsonPropertyName ( "disabled" ) ]
2024 public int Disabled { get ; set ; }
2125
You can’t perform that action at this time.
0 commit comments