Skip to content

Commit f9c60bd

Browse files
Commit via running: make Sources/copilot
1 parent 95dd47a commit f9c60bd

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

Sources/copilot/Types.swift

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1221,12 +1221,16 @@ public enum Components {
12211221
public var id: Swift.Int64
12221222
/// - Remark: Generated from `#/components/schemas/enterprise-team/name`.
12231223
public var name: Swift.String
1224+
/// - Remark: Generated from `#/components/schemas/enterprise-team/description`.
1225+
public var description: Swift.String?
12241226
/// - Remark: Generated from `#/components/schemas/enterprise-team/slug`.
12251227
public var slug: Swift.String
12261228
/// - Remark: Generated from `#/components/schemas/enterprise-team/url`.
12271229
public var url: Swift.String
12281230
/// - 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?
12301234
/// - Remark: Generated from `#/components/schemas/enterprise-team/group_id`.
12311235
public var groupId: Swift.String?
12321236
/// - Remark: Generated from `#/components/schemas/enterprise-team/group_name`.
@@ -1244,9 +1248,11 @@ public enum Components {
12441248
/// - Parameters:
12451249
/// - id:
12461250
/// - name:
1251+
/// - description:
12471252
/// - slug:
12481253
/// - url:
12491254
/// - syncToOrganizations:
1255+
/// - organizationSelectionType:
12501256
/// - groupId:
12511257
/// - groupName:
12521258
/// - htmlUrl:
@@ -1256,9 +1262,11 @@ public enum Components {
12561262
public init(
12571263
id: Swift.Int64,
12581264
name: Swift.String,
1265+
description: Swift.String? = nil,
12591266
slug: Swift.String,
12601267
url: Swift.String,
1261-
syncToOrganizations: Swift.String,
1268+
syncToOrganizations: Swift.String? = nil,
1269+
organizationSelectionType: Swift.String? = nil,
12621270
groupId: Swift.String? = nil,
12631271
groupName: Swift.String? = nil,
12641272
htmlUrl: Swift.String,
@@ -1268,9 +1276,11 @@ public enum Components {
12681276
) {
12691277
self.id = id
12701278
self.name = name
1279+
self.description = description
12711280
self.slug = slug
12721281
self.url = url
12731282
self.syncToOrganizations = syncToOrganizations
1283+
self.organizationSelectionType = organizationSelectionType
12741284
self.groupId = groupId
12751285
self.groupName = groupName
12761286
self.htmlUrl = htmlUrl
@@ -1281,9 +1291,11 @@ public enum Components {
12811291
public enum CodingKeys: String, CodingKey {
12821292
case id
12831293
case name
1294+
case description
12841295
case slug
12851296
case url
12861297
case syncToOrganizations = "sync_to_organizations"
1298+
case organizationSelectionType = "organization_selection_type"
12871299
case groupId = "group_id"
12881300
case groupName = "group_name"
12891301
case htmlUrl = "html_url"

0 commit comments

Comments
 (0)