@@ -1221,12 +1221,16 @@ public enum Components {
1221
1221
public var id : Swift . Int64
1222
1222
/// - Remark: Generated from `#/components/schemas/enterprise-team/name`.
1223
1223
public var name : Swift . String
1224
+ /// - Remark: Generated from `#/components/schemas/enterprise-team/description`.
1225
+ public var description : Swift . String ?
1224
1226
/// - Remark: Generated from `#/components/schemas/enterprise-team/slug`.
1225
1227
public var slug : Swift . String
1226
1228
/// - Remark: Generated from `#/components/schemas/enterprise-team/url`.
1227
1229
public var url : Swift . String
1228
1230
/// - Remark: Generated from `#/components/schemas/enterprise-team/sync_to_organizations`.
1229
- public var syncToOrganizations : Swift . String
1231
+ public var syncToOrganizations : Swift . String ?
1232
+ /// - Remark: Generated from `#/components/schemas/enterprise-team/organization_selection_type`.
1233
+ public var organizationSelectionType : Swift . String ?
1230
1234
/// - Remark: Generated from `#/components/schemas/enterprise-team/group_id`.
1231
1235
public var groupId : Swift . String ?
1232
1236
/// - Remark: Generated from `#/components/schemas/enterprise-team/group_name`.
@@ -1244,9 +1248,11 @@ public enum Components {
1244
1248
/// - Parameters:
1245
1249
/// - id:
1246
1250
/// - name:
1251
+ /// - description:
1247
1252
/// - slug:
1248
1253
/// - url:
1249
1254
/// - syncToOrganizations:
1255
+ /// - organizationSelectionType:
1250
1256
/// - groupId:
1251
1257
/// - groupName:
1252
1258
/// - htmlUrl:
@@ -1256,9 +1262,11 @@ public enum Components {
1256
1262
public init (
1257
1263
id: Swift . Int64 ,
1258
1264
name: Swift . String ,
1265
+ description: Swift . String ? = nil ,
1259
1266
slug: Swift . String ,
1260
1267
url: Swift . String ,
1261
- syncToOrganizations: Swift . String ,
1268
+ syncToOrganizations: Swift . String ? = nil ,
1269
+ organizationSelectionType: Swift . String ? = nil ,
1262
1270
groupId: Swift . String ? = nil ,
1263
1271
groupName: Swift . String ? = nil ,
1264
1272
htmlUrl: Swift . String ,
@@ -1268,9 +1276,11 @@ public enum Components {
1268
1276
) {
1269
1277
self . id = id
1270
1278
self . name = name
1279
+ self . description = description
1271
1280
self . slug = slug
1272
1281
self . url = url
1273
1282
self . syncToOrganizations = syncToOrganizations
1283
+ self . organizationSelectionType = organizationSelectionType
1274
1284
self . groupId = groupId
1275
1285
self . groupName = groupName
1276
1286
self . htmlUrl = htmlUrl
@@ -1281,9 +1291,11 @@ public enum Components {
1281
1291
public enum CodingKeys : String , CodingKey {
1282
1292
case id
1283
1293
case name
1294
+ case description
1284
1295
case slug
1285
1296
case url
1286
1297
case syncToOrganizations = " sync_to_organizations "
1298
+ case organizationSelectionType = " organization_selection_type "
1287
1299
case groupId = " group_id "
1288
1300
case groupName = " group_name "
1289
1301
case htmlUrl = " html_url "
0 commit comments