You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Sources/actions/Types.swift
+29-1Lines changed: 29 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -6414,6 +6414,30 @@ public enum Components {
6414
6414
public var webCommitSignoffRequired: Swift.Bool?
6415
6415
/// - Remark: Generated from `#/components/schemas/minimal-repository/security_and_analysis`.
6416
6416
public var securityAndAnalysis: Components.Schemas.SecurityAndAnalysis?
6417
+
/// The custom properties that were defined for the repository. The keys are the custom property names, and the values are the corresponding custom property values.
6418
+
///
6419
+
/// - Remark: Generated from `#/components/schemas/minimal-repository/custom_properties`.
6420
+
public struct CustomPropertiesPayload: Codable, Hashable, Sendable {
6421
+
/// A container of undocumented properties.
6422
+
public var additionalProperties: OpenAPIRuntime.OpenAPIObjectContainer
6423
+
/// Creates a new `CustomPropertiesPayload`.
6424
+
///
6425
+
/// - Parameters:
6426
+
/// - additionalProperties: A container of undocumented properties.
6427
+
public init(additionalProperties: OpenAPIRuntime.OpenAPIObjectContainer = .init()) {
/// The custom properties that were defined for the repository. The keys are the custom property names, and the values are the corresponding custom property values.
6438
+
///
6439
+
/// - Remark: Generated from `#/components/schemas/minimal-repository/custom_properties`.
6440
+
public var customProperties: Components.Schemas.MinimalRepository.CustomPropertiesPayload?
6417
6441
/// Creates a new `MinimalRepository`.
6418
6442
///
6419
6443
/// - Parameters:
@@ -6504,6 +6528,7 @@ public enum Components {
6504
6528
/// - allowForking:
6505
6529
/// - webCommitSignoffRequired:
6506
6530
/// - securityAndAnalysis:
6531
+
/// - customProperties: The custom properties that were defined for the repository. The keys are the custom property names, and the values are the corresponding custom property values.
0 commit comments