Skip to content

Commit 9fcb2fb

Browse files
committed
regen
1 parent f50208a commit 9fcb2fb

28 files changed

+84
-84
lines changed

Appwrite/Models/AttributeBoolean.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public class AttributeBoolean
3535
public string UpdatedAt { get; private set; }
3636

3737
[JsonPropertyName("default")]
38-
public bool? @Default { get; private set; }
38+
public bool? Default { get; private set; }
3939

4040
public AttributeBoolean(
4141
string key,
@@ -56,7 +56,7 @@ public AttributeBoolean(
5656
Array = array;
5757
CreatedAt = createdAt;
5858
UpdatedAt = updatedAt;
59-
@Default = xdefault;
59+
Default = xdefault;
6060
}
6161

6262
public static AttributeBoolean From(Dictionary<string, object> map) => new AttributeBoolean(
@@ -81,7 +81,7 @@ public AttributeBoolean(
8181
{ "array", Array },
8282
{ "$createdAt", CreatedAt },
8383
{ "$updatedAt", UpdatedAt },
84-
{ "default", @Default }
84+
{ "default", Default }
8585
};
8686
}
8787
}

Appwrite/Models/AttributeDatetime.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public class AttributeDatetime
3838
public string Format { get; private set; }
3939

4040
[JsonPropertyName("default")]
41-
public string? @Default { get; private set; }
41+
public string? Default { get; private set; }
4242

4343
public AttributeDatetime(
4444
string key,
@@ -61,7 +61,7 @@ public AttributeDatetime(
6161
CreatedAt = createdAt;
6262
UpdatedAt = updatedAt;
6363
Format = format;
64-
@Default = xdefault;
64+
Default = xdefault;
6565
}
6666

6767
public static AttributeDatetime From(Dictionary<string, object> map) => new AttributeDatetime(
@@ -88,7 +88,7 @@ public AttributeDatetime(
8888
{ "$createdAt", CreatedAt },
8989
{ "$updatedAt", UpdatedAt },
9090
{ "format", Format },
91-
{ "default", @Default }
91+
{ "default", Default }
9292
};
9393
}
9494
}

Appwrite/Models/AttributeEmail.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public class AttributeEmail
3838
public string Format { get; private set; }
3939

4040
[JsonPropertyName("default")]
41-
public string? @Default { get; private set; }
41+
public string? Default { get; private set; }
4242

4343
public AttributeEmail(
4444
string key,
@@ -61,7 +61,7 @@ public AttributeEmail(
6161
CreatedAt = createdAt;
6262
UpdatedAt = updatedAt;
6363
Format = format;
64-
@Default = xdefault;
64+
Default = xdefault;
6565
}
6666

6767
public static AttributeEmail From(Dictionary<string, object> map) => new AttributeEmail(
@@ -88,7 +88,7 @@ public AttributeEmail(
8888
{ "$createdAt", CreatedAt },
8989
{ "$updatedAt", UpdatedAt },
9090
{ "format", Format },
91-
{ "default", @Default }
91+
{ "default", Default }
9292
};
9393
}
9494
}

Appwrite/Models/AttributeEnum.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public class AttributeEnum
4141
public string Format { get; private set; }
4242

4343
[JsonPropertyName("default")]
44-
public string? @Default { get; private set; }
44+
public string? Default { get; private set; }
4545

4646
public AttributeEnum(
4747
string key,
@@ -66,7 +66,7 @@ public AttributeEnum(
6666
UpdatedAt = updatedAt;
6767
Elements = elements;
6868
Format = format;
69-
@Default = xdefault;
69+
Default = xdefault;
7070
}
7171

7272
public static AttributeEnum From(Dictionary<string, object> map) => new AttributeEnum(
@@ -95,7 +95,7 @@ public AttributeEnum(
9595
{ "$updatedAt", UpdatedAt },
9696
{ "elements", Elements },
9797
{ "format", Format },
98-
{ "default", @Default }
98+
{ "default", Default }
9999
};
100100
}
101101
}

Appwrite/Models/AttributeFloat.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public class AttributeFloat
4141
public double? Max { get; private set; }
4242

4343
[JsonPropertyName("default")]
44-
public double? @Default { get; private set; }
44+
public double? Default { get; private set; }
4545

4646
public AttributeFloat(
4747
string key,
@@ -66,7 +66,7 @@ public AttributeFloat(
6666
UpdatedAt = updatedAt;
6767
Min = min;
6868
Max = max;
69-
@Default = xdefault;
69+
Default = xdefault;
7070
}
7171

7272
public static AttributeFloat From(Dictionary<string, object> map) => new AttributeFloat(
@@ -95,7 +95,7 @@ public AttributeFloat(
9595
{ "$updatedAt", UpdatedAt },
9696
{ "min", Min },
9797
{ "max", Max },
98-
{ "default", @Default }
98+
{ "default", Default }
9999
};
100100
}
101101
}

Appwrite/Models/AttributeInteger.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public class AttributeInteger
4141
public long? Max { get; private set; }
4242

4343
[JsonPropertyName("default")]
44-
public long? @Default { get; private set; }
44+
public long? Default { get; private set; }
4545

4646
public AttributeInteger(
4747
string key,
@@ -66,7 +66,7 @@ public AttributeInteger(
6666
UpdatedAt = updatedAt;
6767
Min = min;
6868
Max = max;
69-
@Default = xdefault;
69+
Default = xdefault;
7070
}
7171

7272
public static AttributeInteger From(Dictionary<string, object> map) => new AttributeInteger(
@@ -95,7 +95,7 @@ public AttributeInteger(
9595
{ "$updatedAt", UpdatedAt },
9696
{ "min", Min },
9797
{ "max", Max },
98-
{ "default", @Default }
98+
{ "default", Default }
9999
};
100100
}
101101
}

Appwrite/Models/AttributeIp.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public class AttributeIp
3838
public string Format { get; private set; }
3939

4040
[JsonPropertyName("default")]
41-
public string? @Default { get; private set; }
41+
public string? Default { get; private set; }
4242

4343
public AttributeIp(
4444
string key,
@@ -61,7 +61,7 @@ public AttributeIp(
6161
CreatedAt = createdAt;
6262
UpdatedAt = updatedAt;
6363
Format = format;
64-
@Default = xdefault;
64+
Default = xdefault;
6565
}
6666

6767
public static AttributeIp From(Dictionary<string, object> map) => new AttributeIp(
@@ -88,7 +88,7 @@ public AttributeIp(
8888
{ "$createdAt", CreatedAt },
8989
{ "$updatedAt", UpdatedAt },
9090
{ "format", Format },
91-
{ "default", @Default }
91+
{ "default", Default }
9292
};
9393
}
9494
}

Appwrite/Models/AttributeLine.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public class AttributeLine
3535
public string UpdatedAt { get; private set; }
3636

3737
[JsonPropertyName("default")]
38-
public List<object>? @Default { get; private set; }
38+
public List<object>? Default { get; private set; }
3939

4040
public AttributeLine(
4141
string key,
@@ -56,7 +56,7 @@ public AttributeLine(
5656
Array = array;
5757
CreatedAt = createdAt;
5858
UpdatedAt = updatedAt;
59-
@Default = xdefault;
59+
Default = xdefault;
6060
}
6161

6262
public static AttributeLine From(Dictionary<string, object> map) => new AttributeLine(
@@ -81,7 +81,7 @@ public AttributeLine(
8181
{ "array", Array },
8282
{ "$createdAt", CreatedAt },
8383
{ "$updatedAt", UpdatedAt },
84-
{ "default", @Default }
84+
{ "default", Default }
8585
};
8686
}
8787
}

Appwrite/Models/AttributePoint.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public class AttributePoint
3535
public string UpdatedAt { get; private set; }
3636

3737
[JsonPropertyName("default")]
38-
public List<object>? @Default { get; private set; }
38+
public List<object>? Default { get; private set; }
3939

4040
public AttributePoint(
4141
string key,
@@ -56,7 +56,7 @@ public AttributePoint(
5656
Array = array;
5757
CreatedAt = createdAt;
5858
UpdatedAt = updatedAt;
59-
@Default = xdefault;
59+
Default = xdefault;
6060
}
6161

6262
public static AttributePoint From(Dictionary<string, object> map) => new AttributePoint(
@@ -81,7 +81,7 @@ public AttributePoint(
8181
{ "array", Array },
8282
{ "$createdAt", CreatedAt },
8383
{ "$updatedAt", UpdatedAt },
84-
{ "default", @Default }
84+
{ "default", Default }
8585
};
8686
}
8787
}

Appwrite/Models/AttributePolygon.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public class AttributePolygon
3535
public string UpdatedAt { get; private set; }
3636

3737
[JsonPropertyName("default")]
38-
public List<object>? @Default { get; private set; }
38+
public List<object>? Default { get; private set; }
3939

4040
public AttributePolygon(
4141
string key,
@@ -56,7 +56,7 @@ public AttributePolygon(
5656
Array = array;
5757
CreatedAt = createdAt;
5858
UpdatedAt = updatedAt;
59-
@Default = xdefault;
59+
Default = xdefault;
6060
}
6161

6262
public static AttributePolygon From(Dictionary<string, object> map) => new AttributePolygon(
@@ -81,7 +81,7 @@ public AttributePolygon(
8181
{ "array", Array },
8282
{ "$createdAt", CreatedAt },
8383
{ "$updatedAt", UpdatedAt },
84-
{ "default", @Default }
84+
{ "default", Default }
8585
};
8686
}
8787
}

0 commit comments

Comments
 (0)