@@ -1380,6 +1380,8 @@ public enum Components {
1380
1380
public var location: Swift.String?
1381
1381
/// - Remark: Generated from `#/components/schemas/public-user/email`.
1382
1382
public var email: Swift.String?
1383
+ /// - Remark: Generated from `#/components/schemas/public-user/notification_email`.
1384
+ public var notification_email: Swift.String?
1383
1385
/// - Remark: Generated from `#/components/schemas/public-user/hireable`.
1384
1386
public var hireable: Swift.Bool?
1385
1387
/// - Remark: Generated from `#/components/schemas/public-user/bio`.
@@ -1473,6 +1475,7 @@ public enum Components {
1473
1475
/// - blog:
1474
1476
/// - location:
1475
1477
/// - email:
1478
+ /// - notification_email:
1476
1479
/// - hireable:
1477
1480
/// - bio:
1478
1481
/// - twitter_username:
@@ -1513,6 +1516,7 @@ public enum Components {
1513
1516
blog: Swift.String? = nil,
1514
1517
location: Swift.String? = nil,
1515
1518
email: Swift.String? = nil,
1519
+ notification_email: Swift.String? = nil,
1516
1520
hireable: Swift.Bool? = nil,
1517
1521
bio: Swift.String? = nil,
1518
1522
twitter_username: Swift.String? = nil,
@@ -1553,6 +1557,7 @@ public enum Components {
1553
1557
self.blog = blog
1554
1558
self.location = location
1555
1559
self.email = email
1560
+ self.notification_email = notification_email
1556
1561
self.hireable = hireable
1557
1562
self.bio = bio
1558
1563
self.twitter_username = twitter_username
@@ -1594,6 +1599,7 @@ public enum Components {
1594
1599
case blog
1595
1600
case location
1596
1601
case email
1602
+ case notification_email
1597
1603
case hireable
1598
1604
case bio
1599
1605
case twitter_username
@@ -1705,6 +1711,10 @@ public enum Components {
1705
1711
Swift.String.self,
1706
1712
forKey: .email
1707
1713
)
1714
+ notification_email = try container.decodeIfPresent(
1715
+ Swift.String.self,
1716
+ forKey: .notification_email
1717
+ )
1708
1718
hireable = try container.decodeIfPresent(
1709
1719
Swift.Bool.self,
1710
1720
forKey: .hireable
@@ -1793,6 +1803,7 @@ public enum Components {
1793
1803
"blog",
1794
1804
"location",
1795
1805
"email",
1806
+ "notification_email",
1796
1807
"hireable",
1797
1808
"bio",
1798
1809
"twitter_username",
@@ -1862,6 +1873,8 @@ public enum Components {
1862
1873
public var location: Swift.String?
1863
1874
/// - Remark: Generated from `#/components/schemas/private-user/email`.
1864
1875
public var email: Swift.String?
1876
+ /// - Remark: Generated from `#/components/schemas/private-user/notification_email`.
1877
+ public var notification_email: Swift.String?
1865
1878
/// - Remark: Generated from `#/components/schemas/private-user/hireable`.
1866
1879
public var hireable: Swift.Bool?
1867
1880
/// - Remark: Generated from `#/components/schemas/private-user/bio`.
@@ -1961,6 +1974,7 @@ public enum Components {
1961
1974
/// - blog:
1962
1975
/// - location:
1963
1976
/// - email:
1977
+ /// - notification_email:
1964
1978
/// - hireable:
1965
1979
/// - bio:
1966
1980
/// - twitter_username:
@@ -2004,6 +2018,7 @@ public enum Components {
2004
2018
blog: Swift.String? = nil,
2005
2019
location: Swift.String? = nil,
2006
2020
email: Swift.String? = nil,
2021
+ notification_email: Swift.String? = nil,
2007
2022
hireable: Swift.Bool? = nil,
2008
2023
bio: Swift.String? = nil,
2009
2024
twitter_username: Swift.String? = nil,
@@ -2047,6 +2062,7 @@ public enum Components {
2047
2062
self.blog = blog
2048
2063
self.location = location
2049
2064
self.email = email
2065
+ self.notification_email = notification_email
2050
2066
self.hireable = hireable
2051
2067
self.bio = bio
2052
2068
self.twitter_username = twitter_username
@@ -2091,6 +2107,7 @@ public enum Components {
2091
2107
case blog
2092
2108
case location
2093
2109
case email
2110
+ case notification_email
2094
2111
case hireable
2095
2112
case bio
2096
2113
case twitter_username
0 commit comments