Skip to content

Commit 679825d

Browse files
Commit via running ake Sources/issues
1 parent 6d7d071 commit 679825d

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

Sources/issues/Types.swift

+9-3
Original file line numberDiff line numberDiff line change
@@ -6292,6 +6292,8 @@ public enum Components {
62926292
///
62936293
/// - Remark: Generated from `#/components/schemas/label`.
62946294
public struct label: Codable, Hashable, Sendable {
6295+
/// Unique identifier for the label.
6296+
///
62956297
/// - Remark: Generated from `#/components/schemas/label/id`.
62966298
public var id: Swift.Int64
62976299
/// - Remark: Generated from `#/components/schemas/label/node_id`.
@@ -6304,24 +6306,28 @@ public enum Components {
63046306
///
63056307
/// - Remark: Generated from `#/components/schemas/label/name`.
63066308
public var name: Swift.String
6309+
/// Optional description of the label, such as its purpose.
6310+
///
63076311
/// - Remark: Generated from `#/components/schemas/label/description`.
63086312
public var description: Swift.String?
63096313
/// 6-character hex code, without the leading #, identifying the color
63106314
///
63116315
/// - Remark: Generated from `#/components/schemas/label/color`.
63126316
public var color: Swift.String
6317+
/// Whether this label comes by default in a new repository.
6318+
///
63136319
/// - Remark: Generated from `#/components/schemas/label/default`.
63146320
public var _default: Swift.Bool
63156321
/// Creates a new `label`.
63166322
///
63176323
/// - Parameters:
6318-
/// - id:
6324+
/// - id: Unique identifier for the label.
63196325
/// - node_id:
63206326
/// - url: URL for the label
63216327
/// - name: The name of the label.
6322-
/// - description:
6328+
/// - description: Optional description of the label, such as its purpose.
63236329
/// - 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.
63256331
public init(
63266332
id: Swift.Int64,
63276333
node_id: Swift.String,

0 commit comments

Comments
 (0)