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/teams/Types.swift
+29-1Lines changed: 29 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -3072,6 +3072,30 @@ public enum Components {
3072
3072
public var webCommitSignoffRequired: Swift.Bool?
3073
3073
/// - Remark: Generated from `#/components/schemas/minimal-repository/security_and_analysis`.
3074
3074
public var securityAndAnalysis: Components.Schemas.SecurityAndAnalysis?
3075
+
/// 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.
3076
+
///
3077
+
/// - Remark: Generated from `#/components/schemas/minimal-repository/custom_properties`.
3078
+
public struct CustomPropertiesPayload: Codable, Hashable, Sendable {
3079
+
/// A container of undocumented properties.
3080
+
public var additionalProperties: OpenAPIRuntime.OpenAPIObjectContainer
3081
+
/// Creates a new `CustomPropertiesPayload`.
3082
+
///
3083
+
/// - Parameters:
3084
+
/// - additionalProperties: A container of undocumented properties.
3085
+
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.
3096
+
///
3097
+
/// - Remark: Generated from `#/components/schemas/minimal-repository/custom_properties`.
3098
+
public var customProperties: Components.Schemas.MinimalRepository.CustomPropertiesPayload?
3075
3099
/// Creates a new `MinimalRepository`.
3076
3100
///
3077
3101
/// - Parameters:
@@ -3162,6 +3186,7 @@ public enum Components {
3162
3186
/// - allowForking:
3163
3187
/// - webCommitSignoffRequired:
3164
3188
/// - securityAndAnalysis:
3189
+
/// - 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