Skip to content

Commit bd668f4

Browse files
Commit via running: make Sources/repos
1 parent 2c5c5c4 commit bd668f4

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

Sources/repos/Types.swift

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14469,29 +14469,35 @@ public enum Components {
1446914469
///
1447014470
/// - Remark: Generated from `#/components/schemas/autolink/is_alphanumeric`.
1447114471
public var isAlphanumeric: Swift.Bool
14472+
/// - Remark: Generated from `#/components/schemas/autolink/updated_at`.
14473+
public var updatedAt: Foundation.Date?
1447214474
/// Creates a new `Autolink`.
1447314475
///
1447414476
/// - Parameters:
1447514477
/// - id:
1447614478
/// - keyPrefix: The prefix of a key that is linkified.
1447714479
/// - urlTemplate: A template for the target URL that is generated if a key was found.
1447814480
/// - isAlphanumeric: Whether this autolink reference matches alphanumeric characters. If false, this autolink reference only matches numeric characters.
14481+
/// - updatedAt:
1447914482
public init(
1448014483
id: Swift.Int,
1448114484
keyPrefix: Swift.String,
1448214485
urlTemplate: Swift.String,
14483-
isAlphanumeric: Swift.Bool
14486+
isAlphanumeric: Swift.Bool,
14487+
updatedAt: Foundation.Date? = nil
1448414488
) {
1448514489
self.id = id
1448614490
self.keyPrefix = keyPrefix
1448714491
self.urlTemplate = urlTemplate
1448814492
self.isAlphanumeric = isAlphanumeric
14493+
self.updatedAt = updatedAt
1448914494
}
1449014495
public enum CodingKeys: String, CodingKey {
1449114496
case id
1449214497
case keyPrefix = "key_prefix"
1449314498
case urlTemplate = "url_template"
1449414499
case isAlphanumeric = "is_alphanumeric"
14500+
case updatedAt = "updated_at"
1449514501
}
1449614502
}
1449714503
/// Check Dependabot security updates

0 commit comments

Comments
 (0)