Skip to content

Commit ce02888

Browse files
Update JsonProperty attributes to allow null values for WalletId and SubType
1 parent 417a3c4 commit ce02888

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

src/MyJetWallet.Fireblocks.Client/ApiClients.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38582,7 +38582,7 @@ public partial class SourceTransferPeerPath
3858238582
public string Name { get; set; }
3858338583

3858438584
[Newtonsoft.Json.JsonProperty("walletId", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
38585-
public System.Guid WalletId { get; set; }
38585+
public System.Guid? WalletId { get; set; }
3858638586

3858738587
private System.Collections.Generic.IDictionary<string, object> _additionalProperties;
3858838588

@@ -38629,16 +38629,16 @@ public partial class DestinationTransferPeerPath
3862938629

3863038630
[Newtonsoft.Json.JsonProperty("subType", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
3863138631
[Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))]
38632-
public TransferPeerPathSubType SubType { get; set; }
38632+
public TransferPeerPathSubType? SubType { get; set; }
3863338633

38634-
[Newtonsoft.Json.JsonProperty("id", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
38634+
[Newtonsoft.Json.JsonProperty("id", Required = Newtonsoft.Json.Required.AllowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
3863538635
public string Id { get; set; }
3863638636

3863738637
[Newtonsoft.Json.JsonProperty("name", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
3863838638
public string Name { get; set; }
3863938639

38640-
[Newtonsoft.Json.JsonProperty("walletId", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
38641-
public System.Guid WalletId { get; set; }
38640+
[Newtonsoft.Json.JsonProperty("walletId", Required = Newtonsoft.Json.Required.AllowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
38641+
public System.Guid? WalletId { get; set; }
3864238642

3864338643
[Newtonsoft.Json.JsonProperty("oneTimeAddress", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
3864438644
public OneTimeAddress OneTimeAddress { get; set; }

0 commit comments

Comments
 (0)