@@ -6292,6 +6292,8 @@ public enum Components {
6292
6292
///
6293
6293
/// - Remark: Generated from `#/components/schemas/label`.
6294
6294
public struct label: Codable, Hashable, Sendable {
6295
+ /// Unique identifier for the label.
6296
+ ///
6295
6297
/// - Remark: Generated from `#/components/schemas/label/id`.
6296
6298
public var id: Swift.Int64
6297
6299
/// - Remark: Generated from `#/components/schemas/label/node_id`.
@@ -6304,24 +6306,28 @@ public enum Components {
6304
6306
///
6305
6307
/// - Remark: Generated from `#/components/schemas/label/name`.
6306
6308
public var name: Swift.String
6309
+ /// Optional description of the label, such as its purpose.
6310
+ ///
6307
6311
/// - Remark: Generated from `#/components/schemas/label/description`.
6308
6312
public var description: Swift.String?
6309
6313
/// 6-character hex code, without the leading #, identifying the color
6310
6314
///
6311
6315
/// - Remark: Generated from `#/components/schemas/label/color`.
6312
6316
public var color: Swift.String
6317
+ /// Whether this label comes by default in a new repository.
6318
+ ///
6313
6319
/// - Remark: Generated from `#/components/schemas/label/default`.
6314
6320
public var _default: Swift.Bool
6315
6321
/// Creates a new `label`.
6316
6322
///
6317
6323
/// - Parameters:
6318
- /// - id:
6324
+ /// - id: Unique identifier for the label.
6319
6325
/// - node_id:
6320
6326
/// - url: URL for the label
6321
6327
/// - name: The name of the label.
6322
- /// - description:
6328
+ /// - description: Optional description of the label, such as its purpose.
6323
6329
/// - color: 6-character hex code, without the leading #, identifying the color
6324
- /// - _default:
6330
+ /// - _default: Whether this label comes by default in a new repository.
6325
6331
public init(
6326
6332
id: Swift.Int64,
6327
6333
node_id: Swift.String,
0 commit comments