Skip to content

Commit 5c2e792

Browse files
Commit via running ake Sources/users
1 parent 391af50 commit 5c2e792

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

Sources/users/Types.swift

+17
Original file line numberDiff line numberDiff line change
@@ -1380,6 +1380,8 @@ public enum Components {
13801380
public var location: Swift.String?
13811381
/// - Remark: Generated from `#/components/schemas/public-user/email`.
13821382
public var email: Swift.String?
1383+
/// - Remark: Generated from `#/components/schemas/public-user/notification_email`.
1384+
public var notification_email: Swift.String?
13831385
/// - Remark: Generated from `#/components/schemas/public-user/hireable`.
13841386
public var hireable: Swift.Bool?
13851387
/// - Remark: Generated from `#/components/schemas/public-user/bio`.
@@ -1473,6 +1475,7 @@ public enum Components {
14731475
/// - blog:
14741476
/// - location:
14751477
/// - email:
1478+
/// - notification_email:
14761479
/// - hireable:
14771480
/// - bio:
14781481
/// - twitter_username:
@@ -1513,6 +1516,7 @@ public enum Components {
15131516
blog: Swift.String? = nil,
15141517
location: Swift.String? = nil,
15151518
email: Swift.String? = nil,
1519+
notification_email: Swift.String? = nil,
15161520
hireable: Swift.Bool? = nil,
15171521
bio: Swift.String? = nil,
15181522
twitter_username: Swift.String? = nil,
@@ -1553,6 +1557,7 @@ public enum Components {
15531557
self.blog = blog
15541558
self.location = location
15551559
self.email = email
1560+
self.notification_email = notification_email
15561561
self.hireable = hireable
15571562
self.bio = bio
15581563
self.twitter_username = twitter_username
@@ -1594,6 +1599,7 @@ public enum Components {
15941599
case blog
15951600
case location
15961601
case email
1602+
case notification_email
15971603
case hireable
15981604
case bio
15991605
case twitter_username
@@ -1705,6 +1711,10 @@ public enum Components {
17051711
Swift.String.self,
17061712
forKey: .email
17071713
)
1714+
notification_email = try container.decodeIfPresent(
1715+
Swift.String.self,
1716+
forKey: .notification_email
1717+
)
17081718
hireable = try container.decodeIfPresent(
17091719
Swift.Bool.self,
17101720
forKey: .hireable
@@ -1793,6 +1803,7 @@ public enum Components {
17931803
"blog",
17941804
"location",
17951805
"email",
1806+
"notification_email",
17961807
"hireable",
17971808
"bio",
17981809
"twitter_username",
@@ -1862,6 +1873,8 @@ public enum Components {
18621873
public var location: Swift.String?
18631874
/// - Remark: Generated from `#/components/schemas/private-user/email`.
18641875
public var email: Swift.String?
1876+
/// - Remark: Generated from `#/components/schemas/private-user/notification_email`.
1877+
public var notification_email: Swift.String?
18651878
/// - Remark: Generated from `#/components/schemas/private-user/hireable`.
18661879
public var hireable: Swift.Bool?
18671880
/// - Remark: Generated from `#/components/schemas/private-user/bio`.
@@ -1961,6 +1974,7 @@ public enum Components {
19611974
/// - blog:
19621975
/// - location:
19631976
/// - email:
1977+
/// - notification_email:
19641978
/// - hireable:
19651979
/// - bio:
19661980
/// - twitter_username:
@@ -2004,6 +2018,7 @@ public enum Components {
20042018
blog: Swift.String? = nil,
20052019
location: Swift.String? = nil,
20062020
email: Swift.String? = nil,
2021+
notification_email: Swift.String? = nil,
20072022
hireable: Swift.Bool? = nil,
20082023
bio: Swift.String? = nil,
20092024
twitter_username: Swift.String? = nil,
@@ -2047,6 +2062,7 @@ public enum Components {
20472062
self.blog = blog
20482063
self.location = location
20492064
self.email = email
2065+
self.notification_email = notification_email
20502066
self.hireable = hireable
20512067
self.bio = bio
20522068
self.twitter_username = twitter_username
@@ -2091,6 +2107,7 @@ public enum Components {
20912107
case blog
20922108
case location
20932109
case email
2110+
case notification_email
20942111
case hireable
20952112
case bio
20962113
case twitter_username

0 commit comments

Comments
 (0)