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/codespaces/Types.swift
+29-1Lines changed: 29 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -3237,6 +3237,30 @@ public enum Components {
3237
3237
public var webCommitSignoffRequired: Swift.Bool?
3238
3238
/// - Remark: Generated from `#/components/schemas/minimal-repository/security_and_analysis`.
3239
3239
public var securityAndAnalysis: Components.Schemas.SecurityAndAnalysis?
3240
+
/// 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.
3241
+
///
3242
+
/// - Remark: Generated from `#/components/schemas/minimal-repository/custom_properties`.
3243
+
public struct CustomPropertiesPayload: Codable, Hashable, Sendable {
3244
+
/// A container of undocumented properties.
3245
+
public var additionalProperties: OpenAPIRuntime.OpenAPIObjectContainer
3246
+
/// Creates a new `CustomPropertiesPayload`.
3247
+
///
3248
+
/// - Parameters:
3249
+
/// - additionalProperties: A container of undocumented properties.
3250
+
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.
3261
+
///
3262
+
/// - Remark: Generated from `#/components/schemas/minimal-repository/custom_properties`.
3263
+
public var customProperties: Components.Schemas.MinimalRepository.CustomPropertiesPayload?
3240
3264
/// Creates a new `MinimalRepository`.
3241
3265
///
3242
3266
/// - Parameters:
@@ -3327,6 +3351,7 @@ public enum Components {
3327
3351
/// - allowForking:
3328
3352
/// - webCommitSignoffRequired:
3329
3353
/// - securityAndAnalysis:
3354
+
/// - 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