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/activity/Types.swift
+29-1Lines changed: 29 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -4175,6 +4175,30 @@ public enum Components {
4175
4175
public var webCommitSignoffRequired: Swift.Bool?
4176
4176
/// - Remark: Generated from `#/components/schemas/minimal-repository/security_and_analysis`.
4177
4177
public var securityAndAnalysis: Components.Schemas.SecurityAndAnalysis?
4178
+
/// 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.
4179
+
///
4180
+
/// - Remark: Generated from `#/components/schemas/minimal-repository/custom_properties`.
4181
+
public struct CustomPropertiesPayload: Codable, Hashable, Sendable {
4182
+
/// A container of undocumented properties.
4183
+
public var additionalProperties: OpenAPIRuntime.OpenAPIObjectContainer
4184
+
/// Creates a new `CustomPropertiesPayload`.
4185
+
///
4186
+
/// - Parameters:
4187
+
/// - additionalProperties: A container of undocumented properties.
4188
+
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.
4199
+
///
4200
+
/// - Remark: Generated from `#/components/schemas/minimal-repository/custom_properties`.
4201
+
public var customProperties: Components.Schemas.MinimalRepository.CustomPropertiesPayload?
4178
4202
/// Creates a new `MinimalRepository`.
4179
4203
///
4180
4204
/// - Parameters:
@@ -4265,6 +4289,7 @@ public enum Components {
4265
4289
/// - allowForking:
4266
4290
/// - webCommitSignoffRequired:
4267
4291
/// - securityAndAnalysis:
4292
+
/// - 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