Skip to content

Commit f5520dd

Browse files
Commit via running ake Sources/gists
1 parent efdcea9 commit f5520dd

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

Sources/gists/Types.swift

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1266,6 +1266,8 @@ public enum Components {
12661266
public var location: Swift.String?
12671267
/// - Remark: Generated from `#/components/schemas/public-user/email`.
12681268
public var email: Swift.String?
1269+
/// - Remark: Generated from `#/components/schemas/public-user/notification_email`.
1270+
public var notification_email: Swift.String?
12691271
/// - Remark: Generated from `#/components/schemas/public-user/hireable`.
12701272
public var hireable: Swift.Bool?
12711273
/// - Remark: Generated from `#/components/schemas/public-user/bio`.
@@ -1359,6 +1361,7 @@ public enum Components {
13591361
/// - blog:
13601362
/// - location:
13611363
/// - email:
1364+
/// - notification_email:
13621365
/// - hireable:
13631366
/// - bio:
13641367
/// - twitter_username:
@@ -1399,6 +1402,7 @@ public enum Components {
13991402
blog: Swift.String? = nil,
14001403
location: Swift.String? = nil,
14011404
email: Swift.String? = nil,
1405+
notification_email: Swift.String? = nil,
14021406
hireable: Swift.Bool? = nil,
14031407
bio: Swift.String? = nil,
14041408
twitter_username: Swift.String? = nil,
@@ -1439,6 +1443,7 @@ public enum Components {
14391443
self.blog = blog
14401444
self.location = location
14411445
self.email = email
1446+
self.notification_email = notification_email
14421447
self.hireable = hireable
14431448
self.bio = bio
14441449
self.twitter_username = twitter_username
@@ -1480,6 +1485,7 @@ public enum Components {
14801485
case blog
14811486
case location
14821487
case email
1488+
case notification_email
14831489
case hireable
14841490
case bio
14851491
case twitter_username
@@ -1591,6 +1597,10 @@ public enum Components {
15911597
Swift.String.self,
15921598
forKey: .email
15931599
)
1600+
notification_email = try container.decodeIfPresent(
1601+
Swift.String.self,
1602+
forKey: .notification_email
1603+
)
15941604
hireable = try container.decodeIfPresent(
15951605
Swift.Bool.self,
15961606
forKey: .hireable
@@ -1679,6 +1689,7 @@ public enum Components {
16791689
"blog",
16801690
"location",
16811691
"email",
1692+
"notification_email",
16821693
"hireable",
16831694
"bio",
16841695
"twitter_username",

0 commit comments

Comments
 (0)