Skip to content

Commit d6a489a

Browse files
author
Kevin Hellemun
committed
Regnerated code. (#46)
1 parent 0611f3b commit d6a489a

File tree

145 files changed

+1172
-157
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

145 files changed

+1172
-157
lines changed

BunqSdk/Model/Generated/Endpoint/AttachmentConversationContent.cs

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,16 @@ public static BunqResponse<byte[]> List(ApiContext apiContext, int userId, int c
4141

4242
/// <summary>
4343
/// </summary>
44-
public override bool AreAllFieldNull()
44+
public override bool IsAllFieldNull()
4545
{
4646
return true;
4747
}
48+
49+
/// <summary>
50+
/// </summary>
51+
public static AttachmentConversationContent CreateFromJsonString(string json)
52+
{
53+
return BunqModel.CreateFromJsonString<AttachmentConversationContent>(json);
54+
}
4855
}
4956
}

BunqSdk/Model/Generated/Endpoint/AttachmentMonetaryAccount.cs

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public static BunqResponse<int> Create(ApiContext apiContext, byte[] requestByte
5757

5858
/// <summary>
5959
/// </summary>
60-
public override bool AreAllFieldNull()
60+
public override bool IsAllFieldNull()
6161
{
6262
if (this.Attachment != null)
6363
{
@@ -71,5 +71,12 @@ public override bool AreAllFieldNull()
7171

7272
return true;
7373
}
74+
75+
/// <summary>
76+
/// </summary>
77+
public static AttachmentMonetaryAccount CreateFromJsonString(string json)
78+
{
79+
return BunqModel.CreateFromJsonString<AttachmentMonetaryAccount>(json);
80+
}
7481
}
7582
}

BunqSdk/Model/Generated/Endpoint/AttachmentPublic.cs

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ public static BunqResponse<AttachmentPublic> Get(ApiContext apiContext, string a
8484

8585
/// <summary>
8686
/// </summary>
87-
public override bool AreAllFieldNull()
87+
public override bool IsAllFieldNull()
8888
{
8989
if (this.Uuid != null)
9090
{
@@ -108,5 +108,12 @@ public override bool AreAllFieldNull()
108108

109109
return true;
110110
}
111+
112+
/// <summary>
113+
/// </summary>
114+
public static AttachmentPublic CreateFromJsonString(string json)
115+
{
116+
return BunqModel.CreateFromJsonString<AttachmentPublic>(json);
117+
}
111118
}
112119
}

BunqSdk/Model/Generated/Endpoint/AttachmentPublicContent.cs

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,16 @@ public static BunqResponse<byte[]> List(ApiContext apiContext, string attachment
4141

4242
/// <summary>
4343
/// </summary>
44-
public override bool AreAllFieldNull()
44+
public override bool IsAllFieldNull()
4545
{
4646
return true;
4747
}
48+
49+
/// <summary>
50+
/// </summary>
51+
public static AttachmentPublicContent CreateFromJsonString(string json)
52+
{
53+
return BunqModel.CreateFromJsonString<AttachmentPublicContent>(json);
54+
}
4855
}
4956
}

BunqSdk/Model/Generated/Endpoint/AttachmentTab.cs

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ public static BunqResponse<AttachmentTab> Get(ApiContext apiContext, int userId,
8383

8484
/// <summary>
8585
/// </summary>
86-
public override bool AreAllFieldNull()
86+
public override bool IsAllFieldNull()
8787
{
8888
if (this.Id != null)
8989
{
@@ -107,5 +107,12 @@ public override bool AreAllFieldNull()
107107

108108
return true;
109109
}
110+
111+
/// <summary>
112+
/// </summary>
113+
public static AttachmentTab CreateFromJsonString(string json)
114+
{
115+
return BunqModel.CreateFromJsonString<AttachmentTab>(json);
116+
}
110117
}
111118
}

BunqSdk/Model/Generated/Endpoint/AttachmentTabContent.cs

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,16 @@ public static BunqResponse<byte[]> List(ApiContext apiContext, int userId, int m
4141

4242
/// <summary>
4343
/// </summary>
44-
public override bool AreAllFieldNull()
44+
public override bool IsAllFieldNull()
4545
{
4646
return true;
4747
}
48+
49+
/// <summary>
50+
/// </summary>
51+
public static AttachmentTabContent CreateFromJsonString(string json)
52+
{
53+
return BunqModel.CreateFromJsonString<AttachmentTabContent>(json);
54+
}
4855
}
4956
}

BunqSdk/Model/Generated/Endpoint/Avatar.cs

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ public static BunqResponse<Avatar> Get(ApiContext apiContext, string avatarUuid,
7474

7575
/// <summary>
7676
/// </summary>
77-
public override bool AreAllFieldNull()
77+
public override bool IsAllFieldNull()
7878
{
7979
if (this.Uuid != null)
8080
{
@@ -88,5 +88,12 @@ public override bool AreAllFieldNull()
8888

8989
return true;
9090
}
91+
92+
/// <summary>
93+
/// </summary>
94+
public static Avatar CreateFromJsonString(string json)
95+
{
96+
return BunqModel.CreateFromJsonString<Avatar>(json);
97+
}
9198
}
9299
}

BunqSdk/Model/Generated/Endpoint/BillingContractSubscription.cs

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ public static BunqResponse<List<BillingContractSubscription>> List(ApiContext ap
103103

104104
/// <summary>
105105
/// </summary>
106-
public override bool AreAllFieldNull()
106+
public override bool IsAllFieldNull()
107107
{
108108
if (this.Id != null)
109109
{
@@ -142,5 +142,12 @@ public override bool AreAllFieldNull()
142142

143143
return true;
144144
}
145+
146+
/// <summary>
147+
/// </summary>
148+
public static BillingContractSubscription CreateFromJsonString(string json)
149+
{
150+
return BunqModel.CreateFromJsonString<BillingContractSubscription>(json);
151+
}
145152
}
146153
}

BunqSdk/Model/Generated/Endpoint/BunqMeFundraiserProfile.cs

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ public class BunqMeFundraiserProfile : BunqModel
6666

6767
/// <summary>
6868
/// </summary>
69-
public override bool AreAllFieldNull()
69+
public override bool IsAllFieldNull()
7070
{
7171
if (this.Color != null)
7272
{
@@ -105,5 +105,12 @@ public override bool AreAllFieldNull()
105105

106106
return true;
107107
}
108+
109+
/// <summary>
110+
/// </summary>
111+
public static BunqMeFundraiserProfile CreateFromJsonString(string json)
112+
{
113+
return BunqModel.CreateFromJsonString<BunqMeFundraiserProfile>(json);
114+
}
108115
}
109116
}

BunqSdk/Model/Generated/Endpoint/BunqMeFundraiserResult.cs

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public class BunqMeFundraiserResult : BunqModel
4747

4848
/// <summary>
4949
/// </summary>
50-
public override bool AreAllFieldNull()
50+
public override bool IsAllFieldNull()
5151
{
5252
if (this.Id != null)
5353
{
@@ -76,5 +76,12 @@ public override bool AreAllFieldNull()
7676

7777
return true;
7878
}
79+
80+
/// <summary>
81+
/// </summary>
82+
public static BunqMeFundraiserResult CreateFromJsonString(string json)
83+
{
84+
return BunqModel.CreateFromJsonString<BunqMeFundraiserResult>(json);
85+
}
7986
}
8087
}

0 commit comments

Comments
 (0)