The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Successful build of BoxSdkGen, reference main (9b5d6e), with Swift 6.0 for macOS (SPM) on 18 Sep 2024 19:47:35 UTC.

Swift 6 data race errors: 7

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.0.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

    |              `- note: class 'NetworkClient' does not conform to the 'Sendable' protocol
 18 |     public static let shared = NetworkClient()
    |                       |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'NetworkClient' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 19 |
 20 |     private let utilityQueue = DispatchQueue.global(qos: .utility)
/Users/admin/builder/spi-builder-workspace/Sources/Managers/Webhooks/WebhooksManager.swift:83:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it
81 |     public func deleteWebhookById(webhookId: String, headers: DeleteWebhookByIdHeaders = DeleteWebhookByIdHeaders()) async throws {
82 |         let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
83 |         let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/webhooks/")\(webhookId)", method: "DELETE", headers: headersMap, responseFormat: nil, auth: self.auth, networkSession: self.networkSession))
   |             `- warning: immutable value 'response' was never used; consider replacing with '_' or removing it
84 |     }
85 |
/Users/admin/builder/spi-builder-workspace/Sources/Managers/Workflows/WorkflowsManager.swift:44:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it
42 |     public func startWorkflow(workflowId: String, requestBody: StartWorkflowRequestBody, headers: StartWorkflowHeaders = StartWorkflowHeaders()) async throws {
43 |         let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
44 |         let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/workflows/")\(workflowId)\("/start")", method: "POST", headers: headersMap, data: try requestBody.serialize(), contentType: "application/json", responseFormat: nil, auth: self.auth, networkSession: self.networkSession))
   |             `- warning: immutable value 'response' was never used; consider replacing with '_' or removing it
45 |     }
46 |
/Users/admin/builder/spi-builder-workspace/Sources/Networking/BoxConstants.swift:24:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'OSInformation' may have shared mutable state; this is an error in the Swift 6 language mode
21 | }
22 |
23 | fileprivate class OSInformation {
   |                   `- note: class 'OSInformation' does not conform to the 'Sendable' protocol
24 |     static let shared = OSInformation()
   |                |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'OSInformation' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 |     lazy var name: String = {
[917/1129] Compiling BoxSdkGen CreateZipDownloadHeaders.swift
/Users/admin/builder/spi-builder-workspace/Sources/Networking/NetworkClient.swift:18:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'NetworkClient' may have shared mutable state; this is an error in the Swift 6 language mode
 15 |
 16 | /// Networking layer interface
 17 | public class NetworkClient {
    |              `- note: class 'NetworkClient' does not conform to the 'Sendable' protocol
 18 |     public static let shared = NetworkClient()
    |                       |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'NetworkClient' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 19 |
 20 |     private let utilityQueue = DispatchQueue.global(qos: .utility)
/Users/admin/builder/spi-builder-workspace/Sources/Managers/Webhooks/WebhooksManager.swift:83:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it
81 |     public func deleteWebhookById(webhookId: String, headers: DeleteWebhookByIdHeaders = DeleteWebhookByIdHeaders()) async throws {
82 |         let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
83 |         let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/webhooks/")\(webhookId)", method: "DELETE", headers: headersMap, responseFormat: nil, auth: self.auth, networkSession: self.networkSession))
   |             `- warning: immutable value 'response' was never used; consider replacing with '_' or removing it
84 |     }
85 |
/Users/admin/builder/spi-builder-workspace/Sources/Managers/Workflows/WorkflowsManager.swift:44:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it
42 |     public func startWorkflow(workflowId: String, requestBody: StartWorkflowRequestBody, headers: StartWorkflowHeaders = StartWorkflowHeaders()) async throws {
43 |         let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
44 |         let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/workflows/")\(workflowId)\("/start")", method: "POST", headers: headersMap, data: try requestBody.serialize(), contentType: "application/json", responseFormat: nil, auth: self.auth, networkSession: self.networkSession))
   |             `- warning: immutable value 'response' was never used; consider replacing with '_' or removing it
45 |     }
46 |
/Users/admin/builder/spi-builder-workspace/Sources/Networking/BoxConstants.swift:24:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'OSInformation' may have shared mutable state; this is an error in the Swift 6 language mode
21 | }
22 |
23 | fileprivate class OSInformation {
   |                   `- note: class 'OSInformation' does not conform to the 'Sendable' protocol
24 |     static let shared = OSInformation()
   |                |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'OSInformation' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 |     lazy var name: String = {
[918/1129] Compiling BoxSdkGen GetZipDownloadContentHeaders.swift
/Users/admin/builder/spi-builder-workspace/Sources/Networking/NetworkClient.swift:18:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'NetworkClient' may have shared mutable state; this is an error in the Swift 6 language mode
 15 |
 16 | /// Networking layer interface
 17 | public class NetworkClient {
    |              `- note: class 'NetworkClient' does not conform to the 'Sendable' protocol
 18 |     public static let shared = NetworkClient()
    |                       |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'NetworkClient' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 19 |
 20 |     private let utilityQueue = DispatchQueue.global(qos: .utility)
/Users/admin/builder/spi-builder-workspace/Sources/Managers/Webhooks/WebhooksManager.swift:83:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it
81 |     public func deleteWebhookById(webhookId: String, headers: DeleteWebhookByIdHeaders = DeleteWebhookByIdHeaders()) async throws {
82 |         let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
83 |         let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/webhooks/")\(webhookId)", method: "DELETE", headers: headersMap, responseFormat: nil, auth: self.auth, networkSession: self.networkSession))
   |             `- warning: immutable value 'response' was never used; consider replacing with '_' or removing it
84 |     }
85 |
/Users/admin/builder/spi-builder-workspace/Sources/Managers/Workflows/WorkflowsManager.swift:44:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it
42 |     public func startWorkflow(workflowId: String, requestBody: StartWorkflowRequestBody, headers: StartWorkflowHeaders = StartWorkflowHeaders()) async throws {
43 |         let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
44 |         let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/workflows/")\(workflowId)\("/start")", method: "POST", headers: headersMap, data: try requestBody.serialize(), contentType: "application/json", responseFormat: nil, auth: self.auth, networkSession: self.networkSession))
   |             `- warning: immutable value 'response' was never used; consider replacing with '_' or removing it
45 |     }
46 |
/Users/admin/builder/spi-builder-workspace/Sources/Networking/BoxConstants.swift:24:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'OSInformation' may have shared mutable state; this is an error in the Swift 6 language mode
21 | }
22 |
23 | fileprivate class OSInformation {
   |                   `- note: class 'OSInformation' does not conform to the 'Sendable' protocol
24 |     static let shared = OSInformation()
   |                |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'OSInformation' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 |     lazy var name: String = {
[919/1129] Compiling BoxSdkGen GetZipDownloadStatusHeaders.swift
/Users/admin/builder/spi-builder-workspace/Sources/Networking/NetworkClient.swift:18:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'NetworkClient' may have shared mutable state; this is an error in the Swift 6 language mode
 15 |
 16 | /// Networking layer interface
 17 | public class NetworkClient {
    |              `- note: class 'NetworkClient' does not conform to the 'Sendable' protocol
 18 |     public static let shared = NetworkClient()
    |                       |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'NetworkClient' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 19 |
 20 |     private let utilityQueue = DispatchQueue.global(qos: .utility)
/Users/admin/builder/spi-builder-workspace/Sources/Managers/Webhooks/WebhooksManager.swift:83:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it
81 |     public func deleteWebhookById(webhookId: String, headers: DeleteWebhookByIdHeaders = DeleteWebhookByIdHeaders()) async throws {
82 |         let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
83 |         let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/webhooks/")\(webhookId)", method: "DELETE", headers: headersMap, responseFormat: nil, auth: self.auth, networkSession: self.networkSession))
   |             `- warning: immutable value 'response' was never used; consider replacing with '_' or removing it
84 |     }
85 |
/Users/admin/builder/spi-builder-workspace/Sources/Managers/Workflows/WorkflowsManager.swift:44:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it
42 |     public func startWorkflow(workflowId: String, requestBody: StartWorkflowRequestBody, headers: StartWorkflowHeaders = StartWorkflowHeaders()) async throws {
43 |         let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
44 |         let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/workflows/")\(workflowId)\("/start")", method: "POST", headers: headersMap, data: try requestBody.serialize(), contentType: "application/json", responseFormat: nil, auth: self.auth, networkSession: self.networkSession))
   |             `- warning: immutable value 'response' was never used; consider replacing with '_' or removing it
45 |     }
46 |
/Users/admin/builder/spi-builder-workspace/Sources/Networking/BoxConstants.swift:24:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'OSInformation' may have shared mutable state; this is an error in the Swift 6 language mode
21 | }
22 |
23 | fileprivate class OSInformation {
   |                   `- note: class 'OSInformation' does not conform to the 'Sendable' protocol
24 |     static let shared = OSInformation()
   |                |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'OSInformation' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 |     lazy var name: String = {
[920/1129] Compiling BoxSdkGen ZipDownloadsManager.swift
/Users/admin/builder/spi-builder-workspace/Sources/Networking/NetworkClient.swift:18:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'NetworkClient' may have shared mutable state; this is an error in the Swift 6 language mode
 15 |
 16 | /// Networking layer interface
 17 | public class NetworkClient {
    |              `- note: class 'NetworkClient' does not conform to the 'Sendable' protocol
 18 |     public static let shared = NetworkClient()
    |                       |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'NetworkClient' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 19 |
 20 |     private let utilityQueue = DispatchQueue.global(qos: .utility)
/Users/admin/builder/spi-builder-workspace/Sources/Managers/Webhooks/WebhooksManager.swift:83:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it
81 |     public func deleteWebhookById(webhookId: String, headers: DeleteWebhookByIdHeaders = DeleteWebhookByIdHeaders()) async throws {
82 |         let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
83 |         let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/webhooks/")\(webhookId)", method: "DELETE", headers: headersMap, responseFormat: nil, auth: self.auth, networkSession: self.networkSession))
   |             `- warning: immutable value 'response' was never used; consider replacing with '_' or removing it
84 |     }
85 |
/Users/admin/builder/spi-builder-workspace/Sources/Managers/Workflows/WorkflowsManager.swift:44:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it
42 |     public func startWorkflow(workflowId: String, requestBody: StartWorkflowRequestBody, headers: StartWorkflowHeaders = StartWorkflowHeaders()) async throws {
43 |         let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
44 |         let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/workflows/")\(workflowId)\("/start")", method: "POST", headers: headersMap, data: try requestBody.serialize(), contentType: "application/json", responseFormat: nil, auth: self.auth, networkSession: self.networkSession))
   |             `- warning: immutable value 'response' was never used; consider replacing with '_' or removing it
45 |     }
46 |
/Users/admin/builder/spi-builder-workspace/Sources/Networking/BoxConstants.swift:24:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'OSInformation' may have shared mutable state; this is an error in the Swift 6 language mode
21 | }
22 |
23 | fileprivate class OSInformation {
   |                   `- note: class 'OSInformation' does not conform to the 'Sendable' protocol
24 |     static let shared = OSInformation()
   |                |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'OSInformation' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 |     lazy var name: String = {
[921/1129] Compiling BoxSdkGen Authentication.swift
/Users/admin/builder/spi-builder-workspace/Sources/Networking/NetworkClient.swift:18:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'NetworkClient' may have shared mutable state; this is an error in the Swift 6 language mode
 15 |
 16 | /// Networking layer interface
 17 | public class NetworkClient {
    |              `- note: class 'NetworkClient' does not conform to the 'Sendable' protocol
 18 |     public static let shared = NetworkClient()
    |                       |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'NetworkClient' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 19 |
 20 |     private let utilityQueue = DispatchQueue.global(qos: .utility)
/Users/admin/builder/spi-builder-workspace/Sources/Managers/Webhooks/WebhooksManager.swift:83:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it
81 |     public func deleteWebhookById(webhookId: String, headers: DeleteWebhookByIdHeaders = DeleteWebhookByIdHeaders()) async throws {
82 |         let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
83 |         let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/webhooks/")\(webhookId)", method: "DELETE", headers: headersMap, responseFormat: nil, auth: self.auth, networkSession: self.networkSession))
   |             `- warning: immutable value 'response' was never used; consider replacing with '_' or removing it
84 |     }
85 |
/Users/admin/builder/spi-builder-workspace/Sources/Managers/Workflows/WorkflowsManager.swift:44:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it
42 |     public func startWorkflow(workflowId: String, requestBody: StartWorkflowRequestBody, headers: StartWorkflowHeaders = StartWorkflowHeaders()) async throws {
43 |         let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
44 |         let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/workflows/")\(workflowId)\("/start")", method: "POST", headers: headersMap, data: try requestBody.serialize(), contentType: "application/json", responseFormat: nil, auth: self.auth, networkSession: self.networkSession))
   |             `- warning: immutable value 'response' was never used; consider replacing with '_' or removing it
45 |     }
46 |
/Users/admin/builder/spi-builder-workspace/Sources/Networking/BoxConstants.swift:24:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'OSInformation' may have shared mutable state; this is an error in the Swift 6 language mode
21 | }
22 |
23 | fileprivate class OSInformation {
   |                   `- note: class 'OSInformation' does not conform to the 'Sendable' protocol
24 |     static let shared = OSInformation()
   |                |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'OSInformation' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 |     lazy var name: String = {
[922/1129] Compiling BoxSdkGen BaseUrls.swift
/Users/admin/builder/spi-builder-workspace/Sources/Networking/NetworkClient.swift:18:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'NetworkClient' may have shared mutable state; this is an error in the Swift 6 language mode
 15 |
 16 | /// Networking layer interface
 17 | public class NetworkClient {
    |              `- note: class 'NetworkClient' does not conform to the 'Sendable' protocol
 18 |     public static let shared = NetworkClient()
    |                       |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'NetworkClient' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 19 |
 20 |     private let utilityQueue = DispatchQueue.global(qos: .utility)
/Users/admin/builder/spi-builder-workspace/Sources/Managers/Webhooks/WebhooksManager.swift:83:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it
81 |     public func deleteWebhookById(webhookId: String, headers: DeleteWebhookByIdHeaders = DeleteWebhookByIdHeaders()) async throws {
82 |         let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
83 |         let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/webhooks/")\(webhookId)", method: "DELETE", headers: headersMap, responseFormat: nil, auth: self.auth, networkSession: self.networkSession))
   |             `- warning: immutable value 'response' was never used; consider replacing with '_' or removing it
84 |     }
85 |
/Users/admin/builder/spi-builder-workspace/Sources/Managers/Workflows/WorkflowsManager.swift:44:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it
42 |     public func startWorkflow(workflowId: String, requestBody: StartWorkflowRequestBody, headers: StartWorkflowHeaders = StartWorkflowHeaders()) async throws {
43 |         let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
44 |         let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/workflows/")\(workflowId)\("/start")", method: "POST", headers: headersMap, data: try requestBody.serialize(), contentType: "application/json", responseFormat: nil, auth: self.auth, networkSession: self.networkSession))
   |             `- warning: immutable value 'response' was never used; consider replacing with '_' or removing it
45 |     }
46 |
/Users/admin/builder/spi-builder-workspace/Sources/Networking/BoxConstants.swift:24:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'OSInformation' may have shared mutable state; this is an error in the Swift 6 language mode
21 | }
22 |
23 | fileprivate class OSInformation {
   |                   `- note: class 'OSInformation' does not conform to the 'Sendable' protocol
24 |     static let shared = OSInformation()
   |                |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'OSInformation' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 |     lazy var name: String = {
[923/1129] Compiling BoxSdkGen BoxConstants.swift
/Users/admin/builder/spi-builder-workspace/Sources/Networking/NetworkClient.swift:18:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'NetworkClient' may have shared mutable state; this is an error in the Swift 6 language mode
 15 |
 16 | /// Networking layer interface
 17 | public class NetworkClient {
    |              `- note: class 'NetworkClient' does not conform to the 'Sendable' protocol
 18 |     public static let shared = NetworkClient()
    |                       |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'NetworkClient' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 19 |
 20 |     private let utilityQueue = DispatchQueue.global(qos: .utility)
/Users/admin/builder/spi-builder-workspace/Sources/Managers/Webhooks/WebhooksManager.swift:83:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it
81 |     public func deleteWebhookById(webhookId: String, headers: DeleteWebhookByIdHeaders = DeleteWebhookByIdHeaders()) async throws {
82 |         let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
83 |         let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/webhooks/")\(webhookId)", method: "DELETE", headers: headersMap, responseFormat: nil, auth: self.auth, networkSession: self.networkSession))
   |             `- warning: immutable value 'response' was never used; consider replacing with '_' or removing it
84 |     }
85 |
/Users/admin/builder/spi-builder-workspace/Sources/Managers/Workflows/WorkflowsManager.swift:44:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it
42 |     public func startWorkflow(workflowId: String, requestBody: StartWorkflowRequestBody, headers: StartWorkflowHeaders = StartWorkflowHeaders()) async throws {
43 |         let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
44 |         let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/workflows/")\(workflowId)\("/start")", method: "POST", headers: headersMap, data: try requestBody.serialize(), contentType: "application/json", responseFormat: nil, auth: self.auth, networkSession: self.networkSession))
   |             `- warning: immutable value 'response' was never used; consider replacing with '_' or removing it
45 |     }
46 |
/Users/admin/builder/spi-builder-workspace/Sources/Networking/BoxConstants.swift:24:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'OSInformation' may have shared mutable state; this is an error in the Swift 6 language mode
21 | }
22 |
23 | fileprivate class OSInformation {
   |                   `- note: class 'OSInformation' does not conform to the 'Sendable' protocol
24 |     static let shared = OSInformation()
   |                |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'OSInformation' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 |     lazy var name: String = {
[924/1129] Compiling BoxSdkGen FetchConversation.swift
/Users/admin/builder/spi-builder-workspace/Sources/Networking/NetworkClient.swift:18:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'NetworkClient' may have shared mutable state; this is an error in the Swift 6 language mode
 15 |
 16 | /// Networking layer interface
 17 | public class NetworkClient {
    |              `- note: class 'NetworkClient' does not conform to the 'Sendable' protocol
 18 |     public static let shared = NetworkClient()
    |                       |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'NetworkClient' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 19 |
 20 |     private let utilityQueue = DispatchQueue.global(qos: .utility)
/Users/admin/builder/spi-builder-workspace/Sources/Managers/Webhooks/WebhooksManager.swift:83:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it
81 |     public func deleteWebhookById(webhookId: String, headers: DeleteWebhookByIdHeaders = DeleteWebhookByIdHeaders()) async throws {
82 |         let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
83 |         let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/webhooks/")\(webhookId)", method: "DELETE", headers: headersMap, responseFormat: nil, auth: self.auth, networkSession: self.networkSession))
   |             `- warning: immutable value 'response' was never used; consider replacing with '_' or removing it
84 |     }
85 |
/Users/admin/builder/spi-builder-workspace/Sources/Managers/Workflows/WorkflowsManager.swift:44:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it
42 |     public func startWorkflow(workflowId: String, requestBody: StartWorkflowRequestBody, headers: StartWorkflowHeaders = StartWorkflowHeaders()) async throws {
43 |         let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
44 |         let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/workflows/")\(workflowId)\("/start")", method: "POST", headers: headersMap, data: try requestBody.serialize(), contentType: "application/json", responseFormat: nil, auth: self.auth, networkSession: self.networkSession))
   |             `- warning: immutable value 'response' was never used; consider replacing with '_' or removing it
45 |     }
46 |
/Users/admin/builder/spi-builder-workspace/Sources/Networking/BoxConstants.swift:24:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'OSInformation' may have shared mutable state; this is an error in the Swift 6 language mode
21 | }
22 |
23 | fileprivate class OSInformation {
   |                   `- note: class 'OSInformation' does not conform to the 'Sendable' protocol
24 |     static let shared = OSInformation()
   |                |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'OSInformation' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 |     lazy var name: String = {
[925/1129] Compiling BoxSdkGen FetchOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Networking/NetworkClient.swift:18:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'NetworkClient' may have shared mutable state; this is an error in the Swift 6 language mode
 15 |
 16 | /// Networking layer interface
 17 | public class NetworkClient {
    |              `- note: class 'NetworkClient' does not conform to the 'Sendable' protocol
 18 |     public static let shared = NetworkClient()
    |                       |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'NetworkClient' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 19 |
 20 |     private let utilityQueue = DispatchQueue.global(qos: .utility)
/Users/admin/builder/spi-builder-workspace/Sources/Managers/Webhooks/WebhooksManager.swift:83:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it
81 |     public func deleteWebhookById(webhookId: String, headers: DeleteWebhookByIdHeaders = DeleteWebhookByIdHeaders()) async throws {
82 |         let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
83 |         let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/webhooks/")\(webhookId)", method: "DELETE", headers: headersMap, responseFormat: nil, auth: self.auth, networkSession: self.networkSession))
   |             `- warning: immutable value 'response' was never used; consider replacing with '_' or removing it
84 |     }
85 |
/Users/admin/builder/spi-builder-workspace/Sources/Managers/Workflows/WorkflowsManager.swift:44:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it
42 |     public func startWorkflow(workflowId: String, requestBody: StartWorkflowRequestBody, headers: StartWorkflowHeaders = StartWorkflowHeaders()) async throws {
43 |         let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
44 |         let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/workflows/")\(workflowId)\("/start")", method: "POST", headers: headersMap, data: try requestBody.serialize(), contentType: "application/json", responseFormat: nil, auth: self.auth, networkSession: self.networkSession))
   |             `- warning: immutable value 'response' was never used; consider replacing with '_' or removing it
45 |     }
46 |
/Users/admin/builder/spi-builder-workspace/Sources/Networking/BoxConstants.swift:24:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'OSInformation' may have shared mutable state; this is an error in the Swift 6 language mode
21 | }
22 |
23 | fileprivate class OSInformation {
   |                   `- note: class 'OSInformation' does not conform to the 'Sendable' protocol
24 |     static let shared = OSInformation()
   |                |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'OSInformation' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 |     lazy var name: String = {
[926/1129] Compiling BoxSdkGen FetchResponse.swift
/Users/admin/builder/spi-builder-workspace/Sources/Networking/NetworkClient.swift:18:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'NetworkClient' may have shared mutable state; this is an error in the Swift 6 language mode
 15 |
 16 | /// Networking layer interface
 17 | public class NetworkClient {
    |              `- note: class 'NetworkClient' does not conform to the 'Sendable' protocol
 18 |     public static let shared = NetworkClient()
    |                       |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'NetworkClient' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 19 |
 20 |     private let utilityQueue = DispatchQueue.global(qos: .utility)
/Users/admin/builder/spi-builder-workspace/Sources/Managers/Webhooks/WebhooksManager.swift:83:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it
81 |     public func deleteWebhookById(webhookId: String, headers: DeleteWebhookByIdHeaders = DeleteWebhookByIdHeaders()) async throws {
82 |         let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
83 |         let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/webhooks/")\(webhookId)", method: "DELETE", headers: headersMap, responseFormat: nil, auth: self.auth, networkSession: self.networkSession))
   |             `- warning: immutable value 'response' was never used; consider replacing with '_' or removing it
84 |     }
85 |
/Users/admin/builder/spi-builder-workspace/Sources/Managers/Workflows/WorkflowsManager.swift:44:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it
42 |     public func startWorkflow(workflowId: String, requestBody: StartWorkflowRequestBody, headers: StartWorkflowHeaders = StartWorkflowHeaders()) async throws {
43 |         let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
44 |         let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/workflows/")\(workflowId)\("/start")", method: "POST", headers: headersMap, data: try requestBody.serialize(), contentType: "application/json", responseFormat: nil, auth: self.auth, networkSession: self.networkSession))
   |             `- warning: immutable value 'response' was never used; consider replacing with '_' or removing it
45 |     }
46 |
/Users/admin/builder/spi-builder-workspace/Sources/Networking/BoxConstants.swift:24:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'OSInformation' may have shared mutable state; this is an error in the Swift 6 language mode
21 | }
22 |
23 | fileprivate class OSInformation {
   |                   `- note: class 'OSInformation' does not conform to the 'Sendable' protocol
24 |     static let shared = OSInformation()
   |                |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'OSInformation' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 |     lazy var name: String = {
[927/1129] Compiling BoxSdkGen MultipartItem.swift
/Users/admin/builder/spi-builder-workspace/Sources/Networking/NetworkClient.swift:18:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'NetworkClient' may have shared mutable state; this is an error in the Swift 6 language mode
 15 |
 16 | /// Networking layer interface
 17 | public class NetworkClient {
    |              `- note: class 'NetworkClient' does not conform to the 'Sendable' protocol
 18 |     public static let shared = NetworkClient()
    |                       |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'NetworkClient' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 19 |
 20 |     private let utilityQueue = DispatchQueue.global(qos: .utility)
/Users/admin/builder/spi-builder-workspace/Sources/Managers/Webhooks/WebhooksManager.swift:83:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it
81 |     public func deleteWebhookById(webhookId: String, headers: DeleteWebhookByIdHeaders = DeleteWebhookByIdHeaders()) async throws {
82 |         let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
83 |         let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/webhooks/")\(webhookId)", method: "DELETE", headers: headersMap, responseFormat: nil, auth: self.auth, networkSession: self.networkSession))
   |             `- warning: immutable value 'response' was never used; consider replacing with '_' or removing it
84 |     }
85 |
/Users/admin/builder/spi-builder-workspace/Sources/Managers/Workflows/WorkflowsManager.swift:44:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it
42 |     public func startWorkflow(workflowId: String, requestBody: StartWorkflowRequestBody, headers: StartWorkflowHeaders = StartWorkflowHeaders()) async throws {
43 |         let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
44 |         let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/workflows/")\(workflowId)\("/start")", method: "POST", headers: headersMap, data: try requestBody.serialize(), contentType: "application/json", responseFormat: nil, auth: self.auth, networkSession: self.networkSession))
   |             `- warning: immutable value 'response' was never used; consider replacing with '_' or removing it
45 |     }
46 |
/Users/admin/builder/spi-builder-workspace/Sources/Networking/BoxConstants.swift:24:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'OSInformation' may have shared mutable state; this is an error in the Swift 6 language mode
21 | }
22 |
23 | fileprivate class OSInformation {
   |                   `- note: class 'OSInformation' does not conform to the 'Sendable' protocol
24 |     static let shared = OSInformation()
   |                |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'OSInformation' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 |     lazy var name: String = {
[928/1129] Compiling BoxSdkGen NetworkClient.swift
/Users/admin/builder/spi-builder-workspace/Sources/Networking/NetworkClient.swift:18:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'NetworkClient' may have shared mutable state; this is an error in the Swift 6 language mode
 15 |
 16 | /// Networking layer interface
 17 | public class NetworkClient {
    |              `- note: class 'NetworkClient' does not conform to the 'Sendable' protocol
 18 |     public static let shared = NetworkClient()
    |                       |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'NetworkClient' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 19 |
 20 |     private let utilityQueue = DispatchQueue.global(qos: .utility)
/Users/admin/builder/spi-builder-workspace/Sources/Managers/Webhooks/WebhooksManager.swift:83:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it
81 |     public func deleteWebhookById(webhookId: String, headers: DeleteWebhookByIdHeaders = DeleteWebhookByIdHeaders()) async throws {
82 |         let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
83 |         let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/webhooks/")\(webhookId)", method: "DELETE", headers: headersMap, responseFormat: nil, auth: self.auth, networkSession: self.networkSession))
   |             `- warning: immutable value 'response' was never used; consider replacing with '_' or removing it
84 |     }
85 |
/Users/admin/builder/spi-builder-workspace/Sources/Managers/Workflows/WorkflowsManager.swift:44:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it
42 |     public func startWorkflow(workflowId: String, requestBody: StartWorkflowRequestBody, headers: StartWorkflowHeaders = StartWorkflowHeaders()) async throws {
43 |         let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
44 |         let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/workflows/")\(workflowId)\("/start")", method: "POST", headers: headersMap, data: try requestBody.serialize(), contentType: "application/json", responseFormat: nil, auth: self.auth, networkSession: self.networkSession))
   |             `- warning: immutable value 'response' was never used; consider replacing with '_' or removing it
45 |     }
46 |
/Users/admin/builder/spi-builder-workspace/Sources/Networking/BoxConstants.swift:24:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'OSInformation' may have shared mutable state; this is an error in the Swift 6 language mode
21 | }
22 |
23 | fileprivate class OSInformation {
   |                   `- note: class 'OSInformation' does not conform to the 'Sendable' protocol
24 |     static let shared = OSInformation()
   |                |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'OSInformation' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 |     lazy var name: String = {
[929/1154] Compiling BoxSdkGen DevicePinnerTypeField.swift
[930/1154] Compiling BoxSdkGen DevicePinners.swift
[931/1154] Compiling BoxSdkGen DevicePinnersOrderByField.swift
[932/1154] Compiling BoxSdkGen DevicePinnersOrderDirectionField.swift
[933/1154] Compiling BoxSdkGen DevicePinnersOrderField.swift
[934/1154] Compiling BoxSdkGen EmailAlias.swift
[935/1154] Compiling BoxSdkGen EmailAliasTypeField.swift
[936/1154] Compiling BoxSdkGen EmailAliases.swift
[937/1154] Compiling BoxSdkGen EnterpriseBase.swift
[938/1154] Compiling BoxSdkGen EnterpriseBaseTypeField.swift
[939/1154] Compiling BoxSdkGen Event.swift
[940/1154] Compiling BoxSdkGen EventAdditionalDetailsField.swift
[941/1154] Compiling BoxSdkGen EventEventTypeField.swift
[942/1154] Compiling BoxSdkGen EventSource.swift
[943/1154] Compiling BoxSdkGen EventSourceClassificationField.swift
[944/1154] Compiling BoxSdkGen EventSourceItemTypeField.swift
[945/1154] Compiling BoxSdkGen Events.swift
[946/1154] Compiling BoxSdkGen EventsNextStreamPositionField.swift
[947/1154] Compiling BoxSdkGen File.swift
[948/1154] Compiling BoxSdkGen FileItemStatusField.swift
[949/1154] Compiling BoxSdkGen FilePathCollectionField.swift
[950/1154] Compiling BoxSdkGen FileSharedLinkAccessField.swift
[951/1154] Compiling BoxSdkGen FileSharedLinkEffectiveAccessField.swift
[952/1154] Compiling BoxSdkGen FileSharedLinkEffectivePermissionField.swift
[953/1154] Compiling BoxSdkGen FileSharedLinkField.swift
[954/1179] Compiling BoxSdkGen FileSharedLinkPermissionsField.swift
[955/1179] Compiling BoxSdkGen FileBase.swift
[956/1179] Compiling BoxSdkGen FileBaseTypeField.swift
[957/1179] Compiling BoxSdkGen FileBaseOrFolderBaseOrWebLinkBase.swift
[958/1179] Compiling BoxSdkGen FileConflict.swift
[959/1179] Compiling BoxSdkGen FileFull.swift
[960/1179] Compiling BoxSdkGen FileFullAllowedInviteeRolesField.swift
[961/1179] Compiling BoxSdkGen FileFullClassificationField.swift
[962/1179] Compiling BoxSdkGen FileFullExpiringEmbedLinkField.swift
[963/1179] Compiling BoxSdkGen FileFullExpiringEmbedLinkTokenTypeField.swift
[964/1179] Compiling BoxSdkGen FileFullLockAppTypeField.swift
[965/1179] Compiling BoxSdkGen FileFullLockField.swift
[966/1179] Compiling BoxSdkGen FileFullLockTypeField.swift
[967/1179] Compiling BoxSdkGen FileFullMetadataField.swift
[968/1179] Compiling BoxSdkGen FileFullPermissionsField.swift
[969/1179] Compiling BoxSdkGen FileFullRepresentationsEntriesContentField.swift
[970/1179] Compiling BoxSdkGen FileFullRepresentationsEntriesField.swift
[971/1179] Compiling BoxSdkGen FileFullRepresentationsEntriesInfoField.swift
[972/1179] Compiling BoxSdkGen FileFullRepresentationsEntriesPropertiesField.swift
[973/1179] Compiling BoxSdkGen FileFullRepresentationsEntriesStatusField.swift
[974/1179] Compiling BoxSdkGen FileFullRepresentationsEntriesStatusStateField.swift
[975/1179] Compiling BoxSdkGen FileFullRepresentationsField.swift
[976/1179] Compiling BoxSdkGen FileFullSharedLinkPermissionOptionsField.swift
[977/1179] Compiling BoxSdkGen FileFullWatermarkInfoField.swift
[978/1179] Compiling BoxSdkGen FileFullOrFolderFull.swift
[979/1204] Compiling BoxSdkGen FolderFullPermissionsField.swift
[980/1204] Compiling BoxSdkGen FolderFullSyncStateField.swift
[981/1204] Compiling BoxSdkGen FolderFullWatermarkInfoField.swift
[982/1204] Compiling BoxSdkGen FolderLock.swift
[983/1204] Compiling BoxSdkGen FolderLockLockedOperationsField.swift
[984/1204] Compiling BoxSdkGen FolderLocks.swift
[985/1204] Compiling BoxSdkGen FolderMini.swift
[986/1204] Compiling BoxSdkGen GenericSource.swift
[987/1204] Compiling BoxSdkGen Group.swift
[988/1204] Compiling BoxSdkGen GroupBase.swift
[989/1204] Compiling BoxSdkGen GroupBaseTypeField.swift
[990/1204] Compiling BoxSdkGen GroupFull.swift
[991/1204] Compiling BoxSdkGen GroupFullInvitabilityLevelField.swift
[992/1204] Compiling BoxSdkGen GroupFullMemberViewabilityLevelField.swift
[993/1204] Compiling BoxSdkGen GroupFullPermissionsField.swift
[994/1204] Compiling BoxSdkGen GroupMembership.swift
[995/1204] Compiling BoxSdkGen GroupMembershipRoleField.swift
[996/1204] Compiling BoxSdkGen GroupMembershipTypeField.swift
[997/1204] Compiling BoxSdkGen GroupMemberships.swift
[998/1204] Compiling BoxSdkGen GroupMembershipsOrderDirectionField.swift
[999/1204] Compiling BoxSdkGen GroupMembershipsOrderField.swift
[1000/1204] Compiling BoxSdkGen GroupMini.swift
[1001/1204] Compiling BoxSdkGen GroupMiniGroupTypeField.swift
[1002/1204] Compiling BoxSdkGen GroupMiniOrUserCollaborations.swift
[1003/1204] Compiling BoxSdkGen Groups.swift
[1004/1229] Compiling BoxSdkGen FileFullOrFolderFullOrWebLink.swift
[1005/1229] Compiling BoxSdkGen FileFullOrFolderMiniOrWebLink.swift
[1006/1229] Compiling BoxSdkGen FileMini.swift
[1007/1229] Compiling BoxSdkGen FileMiniOrFolderMini.swift
[1008/1229] Compiling BoxSdkGen FileOrFolder.swift
[1009/1229] Compiling BoxSdkGen FileOrFolderOrWebLink.swift
[1010/1229] Compiling BoxSdkGen FileOrFolderScope.swift
[1011/1229] Compiling BoxSdkGen FileOrFolderScopeScopeField.swift
[1012/1229] Compiling BoxSdkGen FileRequest.swift
[1013/1229] Compiling BoxSdkGen FileRequestStatusField.swift
[1014/1229] Compiling BoxSdkGen FileRequestTypeField.swift
[1015/1229] Compiling BoxSdkGen FileRequestCopyRequest.swift
[1016/1229] Compiling BoxSdkGen FileRequestCopyRequestFolderField.swift
[1017/1229] Compiling BoxSdkGen FileRequestCopyRequestFolderTypeField.swift
[1018/1229] Compiling BoxSdkGen FileRequestUpdateRequest.swift
[1019/1229] Compiling BoxSdkGen FileRequestUpdateRequestStatusField.swift
[1020/1229] Compiling BoxSdkGen FileVersion.swift
[1021/1229] Compiling BoxSdkGen FileVersionBase.swift
[1022/1229] Compiling BoxSdkGen FileVersionBaseTypeField.swift
[1023/1229] Compiling BoxSdkGen FileVersionFull.swift
[1024/1229] Compiling BoxSdkGen FileVersionLegalHold.swift
[1025/1229] Compiling BoxSdkGen FileVersionLegalHoldTypeField.swift
[1026/1229] Compiling BoxSdkGen FileVersionLegalHolds.swift
[1027/1229] Compiling BoxSdkGen FileVersionMini.swift
[1028/1229] Compiling BoxSdkGen FileVersionRetention.swift
[1029/1254] Compiling BoxSdkGen GroupsOrderDirectionField.swift
[1030/1254] Compiling BoxSdkGen GroupsOrderField.swift
[1031/1254] Compiling BoxSdkGen IntegrationMapping.swift
[1032/1254] Compiling BoxSdkGen IntegrationMappingIntegrationTypeField.swift
[1033/1254] Compiling BoxSdkGen IntegrationMappingBase.swift
[1034/1254] Compiling BoxSdkGen IntegrationMappingBaseTypeField.swift
[1035/1254] Compiling BoxSdkGen IntegrationMappingBoxItemSlack.swift
[1036/1254] Compiling BoxSdkGen IntegrationMappingBoxItemSlackTypeField.swift
[1037/1254] Compiling BoxSdkGen IntegrationMappingPartnerItemSlack.swift
[1038/1254] Compiling BoxSdkGen IntegrationMappingPartnerItemSlackTypeField.swift
[1039/1254] Compiling BoxSdkGen IntegrationMappingPartnerItemSlackUnion.swift
[1040/1254] Compiling BoxSdkGen IntegrationMappingSlackCreateRequest.swift
[1041/1254] Compiling BoxSdkGen IntegrationMappingSlackOptions.swift
[1042/1254] Compiling BoxSdkGen IntegrationMappings.swift
[1043/1254] Compiling BoxSdkGen Invite.swift
[1044/1254] Compiling BoxSdkGen InviteInvitedToField.swift
[1045/1254] Compiling BoxSdkGen InviteInvitedToTypeField.swift
[1046/1254] Compiling BoxSdkGen InviteTypeField.swift
[1047/1254] Compiling BoxSdkGen Items.swift
[1048/1254] Compiling BoxSdkGen ItemsOrderDirectionField.swift
[1049/1254] Compiling BoxSdkGen ItemsOrderField.swift
[1050/1254] Compiling BoxSdkGen KeywordSkillCard.swift
[1051/1254] Compiling BoxSdkGen KeywordSkillCardEntriesField.swift
[1052/1254] Compiling BoxSdkGen KeywordSkillCardInvocationField.swift
[1053/1254] Compiling BoxSdkGen KeywordSkillCardInvocationTypeField.swift
[1054/1279] Compiling BoxSdkGen KeywordSkillCardSkillCardTitleField.swift
[1055/1279] Compiling BoxSdkGen KeywordSkillCardSkillCardTypeField.swift
[1056/1279] Compiling BoxSdkGen KeywordSkillCardSkillField.swift
[1057/1279] Compiling BoxSdkGen KeywordSkillCardSkillTypeField.swift
[1058/1279] Compiling BoxSdkGen KeywordSkillCardTypeField.swift
[1059/1279] Compiling BoxSdkGen KeywordSkillCardOrStatusSkillCardOrTimelineSkillCardOrTranscriptSkillCard.swift
[1060/1279] Compiling BoxSdkGen LegalHoldPolicies.swift
[1061/1279] Compiling BoxSdkGen LegalHoldPolicy.swift
[1062/1279] Compiling BoxSdkGen LegalHoldPolicyAssignmentCountsField.swift
[1063/1279] Compiling BoxSdkGen LegalHoldPolicyStatusField.swift
[1064/1279] Compiling BoxSdkGen LegalHoldPolicyAssignment.swift
[1065/1279] Compiling BoxSdkGen LegalHoldPolicyAssignmentBase.swift
[1066/1279] Compiling BoxSdkGen LegalHoldPolicyAssignmentBaseTypeField.swift
[1067/1279] Compiling BoxSdkGen LegalHoldPolicyAssignments.swift
[1068/1279] Compiling BoxSdkGen LegalHoldPolicyMini.swift
[1069/1279] Compiling BoxSdkGen LegalHoldPolicyMiniTypeField.swift
[1070/1279] Compiling BoxSdkGen Metadata.swift
[1071/1279] Compiling BoxSdkGen MetadataBase.swift
[1072/1279] Compiling BoxSdkGen MetadataCascadePolicies.swift
[1073/1279] Compiling BoxSdkGen MetadataCascadePolicy.swift
[1074/1279] Compiling BoxSdkGen MetadataCascadePolicyOwnerEnterpriseField.swift
[1075/1279] Compiling BoxSdkGen MetadataCascadePolicyOwnerEnterpriseTypeField.swift
[1076/1279] Compiling BoxSdkGen MetadataCascadePolicyParentField.swift
[1077/1279] Compiling BoxSdkGen MetadataCascadePolicyParentTypeField.swift
[1078/1279] Compiling BoxSdkGen MetadataCascadePolicyTypeField.swift
[1079/1303] Compiling BoxSdkGen FileVersionRetentionTypeField.swift
[1080/1303] Compiling BoxSdkGen FileVersionRetentions.swift
[1081/1303] Compiling BoxSdkGen FileVersions.swift
[1082/1303] Compiling BoxSdkGen FileVersionsOrderDirectionField.swift
[1083/1303] Compiling BoxSdkGen FileVersionsOrderField.swift
[1084/1303] Compiling BoxSdkGen Files.swift
[1085/1303] Compiling BoxSdkGen FilesOnHold.swift
[1086/1303] Compiling BoxSdkGen FilesUnderRetention.swift
[1087/1303] Compiling BoxSdkGen Folder.swift
[1088/1303] Compiling BoxSdkGen FolderFolderUploadEmailAccessField.swift
[1089/1303] Compiling BoxSdkGen FolderFolderUploadEmailField.swift
[1090/1303] Compiling BoxSdkGen FolderItemStatusField.swift
[1091/1303] Compiling BoxSdkGen FolderPathCollectionField.swift
[1092/1303] Compiling BoxSdkGen FolderSharedLinkAccessField.swift
[1093/1303] Compiling BoxSdkGen FolderSharedLinkEffectiveAccessField.swift
[1094/1303] Compiling BoxSdkGen FolderSharedLinkEffectivePermissionField.swift
[1095/1303] Compiling BoxSdkGen FolderSharedLinkField.swift
[1096/1303] Compiling BoxSdkGen FolderSharedLinkPermissionsField.swift
[1097/1303] Compiling BoxSdkGen FolderBase.swift
[1098/1303] Compiling BoxSdkGen FolderBaseTypeField.swift
[1099/1303] Compiling BoxSdkGen FolderFull.swift
[1100/1303] Compiling BoxSdkGen FolderFullAllowedInviteeRolesField.swift
[1101/1303] Compiling BoxSdkGen FolderFullAllowedSharedLinkAccessLevelsField.swift
[1102/1303] Compiling BoxSdkGen FolderFullClassificationField.swift
[1103/1303] Compiling BoxSdkGen FolderFullMetadataField.swift
[1104/1327] Compiling BoxSdkGen PostOAuth2TokenActorTokenTypeField.swift
[1105/1327] Compiling BoxSdkGen PostOAuth2TokenBoxSubjectTypeField.swift
[1106/1327] Compiling BoxSdkGen PostOAuth2TokenGrantTypeField.swift
[1107/1327] Compiling BoxSdkGen PostOAuth2TokenSubjectTokenTypeField.swift
[1108/1327] Compiling BoxSdkGen PostOAuth2TokenRefreshAccessToken.swift
[1109/1327] Compiling BoxSdkGen PostOAuth2TokenRefreshAccessTokenGrantTypeField.swift
[1110/1327] Compiling BoxSdkGen RealtimeServer.swift
[1111/1327] Compiling BoxSdkGen RealtimeServers.swift
[1112/1327] Compiling BoxSdkGen RecentItem.swift
[1113/1327] Compiling BoxSdkGen RecentItemInteractionTypeField.swift
[1114/1327] Compiling BoxSdkGen RecentItems.swift
[1115/1327] Compiling BoxSdkGen RetentionPolicies.swift
[1116/1327] Compiling BoxSdkGen RetentionPolicy.swift
[1117/1327] Compiling BoxSdkGen RetentionPolicyAssignmentCountsField.swift
[1118/1327] Compiling BoxSdkGen RetentionPolicyPolicyTypeField.swift
[1119/1327] Compiling BoxSdkGen RetentionPolicyRetentionTypeField.swift
[1120/1327] Compiling BoxSdkGen RetentionPolicyStatusField.swift
[1121/1327] Compiling BoxSdkGen RetentionPolicyAssignment.swift
[1122/1327] Compiling BoxSdkGen RetentionPolicyAssignmentAssignedToField.swift
[1123/1327] Compiling BoxSdkGen RetentionPolicyAssignmentAssignedToTypeField.swift
[1124/1327] Compiling BoxSdkGen RetentionPolicyAssignmentFilterFieldsField.swift
[1125/1327] Compiling BoxSdkGen RetentionPolicyAssignmentTypeField.swift
[1126/1327] Compiling BoxSdkGen RetentionPolicyAssignmentBase.swift
[1127/1327] Compiling BoxSdkGen RetentionPolicyAssignmentBaseTypeField.swift
[1128/1327] Compiling BoxSdkGen RetentionPolicyAssignments.swift
[1129/1351] Compiling BoxSdkGen MetadataFieldFilterDateRange.swift
[1130/1351] Compiling BoxSdkGen MetadataFieldFilterDateRangeOrMetadataFieldFilterFloatRangeOrArrayOfStringOrNumberOrString.swift
[1131/1351] Compiling BoxSdkGen MetadataFieldFilterFloatRange.swift
[1132/1351] Compiling BoxSdkGen MetadataFilter.swift
[1133/1351] Compiling BoxSdkGen MetadataFilterScopeField.swift
[1134/1351] Compiling BoxSdkGen MetadataFull.swift
[1135/1351] Compiling BoxSdkGen MetadataQuery.swift
[1136/1351] Compiling BoxSdkGen MetadataQueryOrderByDirectionField.swift
[1137/1351] Compiling BoxSdkGen MetadataQueryOrderByField.swift
[1138/1351] Compiling BoxSdkGen MetadataQueryIndex.swift
[1139/1351] Compiling BoxSdkGen MetadataQueryIndexFieldsField.swift
[1140/1351] Compiling BoxSdkGen MetadataQueryIndexFieldsSortDirectionField.swift
[1141/1351] Compiling BoxSdkGen MetadataQueryIndexStatusField.swift
[1142/1351] Compiling BoxSdkGen MetadataQueryResults.swift
[1143/1351] Compiling BoxSdkGen MetadataTemplate.swift
[1144/1351] Compiling BoxSdkGen MetadataTemplateFieldsField.swift
[1145/1351] Compiling BoxSdkGen MetadataTemplateFieldsOptionsField.swift
[1146/1351] Compiling BoxSdkGen MetadataTemplateFieldsTypeField.swift
[1147/1351] Compiling BoxSdkGen MetadataTemplateTypeField.swift
[1148/1351] Compiling BoxSdkGen MetadataTemplates.swift
[1149/1351] Compiling BoxSdkGen Metadatas.swift
[1150/1351] Compiling BoxSdkGen OAuth2Error.swift
[1151/1351] Compiling BoxSdkGen Outcome.swift
[1152/1351] Compiling BoxSdkGen PostOAuth2Revoke.swift
[1153/1351] Compiling BoxSdkGen PostOAuth2Token.swift
[1154/1375] Compiling BoxSdkGen RetentionPolicyBase.swift
[1155/1375] Compiling BoxSdkGen RetentionPolicyBaseTypeField.swift
[1156/1375] Compiling BoxSdkGen RetentionPolicyMini.swift
[1157/1375] Compiling BoxSdkGen RetentionPolicyMiniDispositionActionField.swift
[1158/1375] Compiling BoxSdkGen RoleVariable.swift
[1159/1375] Compiling BoxSdkGen RoleVariableTypeField.swift
[1160/1375] Compiling BoxSdkGen RoleVariableVariableTypeField.swift
[1161/1375] Compiling BoxSdkGen RoleVariableVariableValueField.swift
[1162/1375] Compiling BoxSdkGen SearchResultWithSharedLink.swift
[1163/1375] Compiling BoxSdkGen SearchResults.swift
[1164/1375] Compiling BoxSdkGen SearchResultsTypeField.swift
[1165/1375] Compiling BoxSdkGen SearchResultsOrSearchResultsWithSharedLinks.swift
[1166/1375] Compiling BoxSdkGen SearchResultsWithSharedLinks.swift
[1167/1375] Compiling BoxSdkGen SearchResultsWithSharedLinksTypeField.swift
[1168/1375] Compiling BoxSdkGen SessionTerminationMessage.swift
[1169/1375] Compiling BoxSdkGen ShieldInformationBarrier.swift
[1170/1375] Compiling BoxSdkGen ShieldInformationBarrierStatusField.swift
[1171/1375] Compiling BoxSdkGen ShieldInformationBarrierTypeField.swift
[1172/1375] Compiling BoxSdkGen ShieldInformationBarrierBase.swift
[1173/1375] Compiling BoxSdkGen ShieldInformationBarrierBaseTypeField.swift
[1174/1375] Compiling BoxSdkGen ShieldInformationBarrierReference.swift
[1175/1375] Compiling BoxSdkGen ShieldInformationBarrierReport.swift
[1176/1375] Compiling BoxSdkGen ShieldInformationBarrierReportStatusField.swift
[1177/1375] Compiling BoxSdkGen ShieldInformationBarrierReportBase.swift
[1178/1375] Compiling BoxSdkGen ShieldInformationBarrierReportBaseTypeField.swift
[1179/1399] Compiling BoxSdkGen TermsOfServiceStatusField.swift
[1180/1399] Compiling BoxSdkGen TermsOfServiceTosTypeField.swift
[1181/1399] Compiling BoxSdkGen TermsOfServiceBase.swift
[1182/1399] Compiling BoxSdkGen TermsOfServiceBaseTypeField.swift
[1183/1399] Compiling BoxSdkGen TermsOfServiceUserStatus.swift
[1184/1399] Compiling BoxSdkGen TermsOfServiceUserStatusTypeField.swift
[1185/1399] Compiling BoxSdkGen TermsOfServiceUserStatuses.swift
[1186/1399] Compiling BoxSdkGen TermsOfServices.swift
[1187/1399] Compiling BoxSdkGen TimelineSkillCard.swift
[1188/1399] Compiling BoxSdkGen TimelineSkillCardEntriesAppearsField.swift
[1189/1399] Compiling BoxSdkGen TimelineSkillCardEntriesField.swift
[1190/1399] Compiling BoxSdkGen TimelineSkillCardInvocationField.swift
[1191/1399] Compiling BoxSdkGen TimelineSkillCardInvocationTypeField.swift
[1192/1399] Compiling BoxSdkGen TimelineSkillCardSkillCardTitleField.swift
[1193/1399] Compiling BoxSdkGen TimelineSkillCardSkillCardTypeField.swift
[1194/1399] Compiling BoxSdkGen TimelineSkillCardSkillField.swift
[1195/1399] Compiling BoxSdkGen TimelineSkillCardSkillTypeField.swift
[1196/1399] Compiling BoxSdkGen TimelineSkillCardTypeField.swift
[1197/1399] Compiling BoxSdkGen TrackingCode.swift
[1198/1399] Compiling BoxSdkGen TrackingCodeTypeField.swift
[1199/1399] Compiling BoxSdkGen TranscriptSkillCard.swift
[1200/1399] Compiling BoxSdkGen TranscriptSkillCardEntriesAppearsField.swift
[1201/1399] Compiling BoxSdkGen TranscriptSkillCardEntriesField.swift
[1202/1399] Compiling BoxSdkGen TranscriptSkillCardInvocationField.swift
[1203/1423] Compiling BoxSdkGen ShieldInformationBarrierReportDetails.swift
[1204/1423] Compiling BoxSdkGen ShieldInformationBarrierReportDetailsDetailsField.swift
[1205/1423] Compiling BoxSdkGen ShieldInformationBarrierReports.swift
[1206/1423] Compiling BoxSdkGen ShieldInformationBarrierSegment.swift
[1207/1423] Compiling BoxSdkGen ShieldInformationBarrierSegmentTypeField.swift
[1208/1423] Compiling BoxSdkGen ShieldInformationBarrierSegmentMember.swift
[1209/1423] Compiling BoxSdkGen ShieldInformationBarrierSegmentMemberShieldInformationBarrierSegmentField.swift
[1210/1423] Compiling BoxSdkGen ShieldInformationBarrierSegmentMemberShieldInformationBarrierSegmentTypeField.swift
[1211/1423] Compiling BoxSdkGen ShieldInformationBarrierSegmentMemberBase.swift
[1212/1423] Compiling BoxSdkGen ShieldInformationBarrierSegmentMemberBaseTypeField.swift
[1213/1423] Compiling BoxSdkGen ShieldInformationBarrierSegmentMemberMini.swift
[1214/1423] Compiling BoxSdkGen ShieldInformationBarrierSegmentMembers.swift
[1215/1423] Compiling BoxSdkGen ShieldInformationBarrierSegmentRestriction.swift
[1216/1423] Compiling BoxSdkGen ShieldInformationBarrierSegmentRestrictionBase.swift
[1217/1423] Compiling BoxSdkGen ShieldInformationBarrierSegmentRestrictionBaseTypeField.swift
[1218/1423] Compiling BoxSdkGen ShieldInformationBarrierSegmentRestrictionMini.swift
[1219/1423] Compiling BoxSdkGen ShieldInformationBarrierSegmentRestrictionMiniRestrictedSegmentField.swift
[1220/1423] Compiling BoxSdkGen ShieldInformationBarrierSegmentRestrictionMiniRestrictedSegmentTypeField.swift
[1221/1423] Compiling BoxSdkGen ShieldInformationBarrierSegmentRestrictionMiniShieldInformationBarrierSegmentField.swift
[1222/1423] Compiling BoxSdkGen ShieldInformationBarrierSegmentRestrictionMiniShieldInformationBarrierSegmentTypeField.swift
[1223/1423] Compiling BoxSdkGen ShieldInformationBarrierSegmentRestrictions.swift
[1224/1423] Compiling BoxSdkGen ShieldInformationBarrierSegments.swift
[1225/1423] Compiling BoxSdkGen ShieldInformationBarriers.swift
[1226/1423] Compiling BoxSdkGen SignRequest.swift
[1227/1423] Compiling BoxSdkGen SignRequestSignFilesField.swift
[1228/1423] Compiling BoxSdkGen SkillInvocation.swift
[1229/1423] Compiling BoxSdkGen SkillInvocationEnterpriseField.swift
[1230/1423] Compiling BoxSdkGen SkillInvocationEnterpriseTypeField.swift
[1231/1423] Compiling BoxSdkGen SkillInvocationSkillField.swift
[1232/1423] Compiling BoxSdkGen SkillInvocationSkillTypeField.swift
[1233/1423] Compiling BoxSdkGen SkillInvocationStatusField.swift
[1234/1423] Compiling BoxSdkGen SkillInvocationStatusStateField.swift
[1235/1423] Compiling BoxSdkGen SkillInvocationTokenField.swift
[1236/1423] Compiling BoxSdkGen SkillInvocationTokenReadField.swift
[1237/1423] Compiling BoxSdkGen SkillInvocationTokenReadTokenTypeField.swift
[1238/1423] Compiling BoxSdkGen SkillInvocationTokenWriteField.swift
[1239/1423] Compiling BoxSdkGen SkillInvocationTokenWriteTokenTypeField.swift
[1240/1423] Compiling BoxSdkGen SkillInvocationTypeField.swift
[1241/1423] Compiling BoxSdkGen StatusSkillCard.swift
[1242/1423] Compiling BoxSdkGen StatusSkillCardInvocationField.swift
[1243/1423] Compiling BoxSdkGen StatusSkillCardInvocationTypeField.swift
[1244/1423] Compiling BoxSdkGen StatusSkillCardSkillCardTitleField.swift
[1245/1423] Compiling BoxSdkGen StatusSkillCardSkillCardTypeField.swift
[1246/1423] Compiling BoxSdkGen StatusSkillCardSkillField.swift
[1247/1423] Compiling BoxSdkGen StatusSkillCardSkillTypeField.swift
[1248/1423] Compiling BoxSdkGen StatusSkillCardStatusCodeField.swift
[1249/1423] Compiling BoxSdkGen StatusSkillCardStatusField.swift
[1250/1423] Compiling BoxSdkGen StatusSkillCardTypeField.swift
[1251/1423] Compiling BoxSdkGen StoragePolicies.swift
[1252/1423] Compiling BoxSdkGen StoragePolicy.swift
[1253/1423] Compiling BoxSdkGen StoragePolicyAssignment.swift
[1254/1423] Compiling BoxSdkGen StoragePolicyAssignmentAssignedToField.swift
[1255/1423] Compiling BoxSdkGen StoragePolicyAssignmentTypeField.swift
[1256/1423] Compiling BoxSdkGen StoragePolicyAssignments.swift
[1257/1423] Compiling BoxSdkGen StoragePolicyMini.swift
[1258/1423] Compiling BoxSdkGen StoragePolicyMiniTypeField.swift
[1259/1423] Compiling BoxSdkGen Task.swift
[1260/1423] Compiling BoxSdkGen TaskActionField.swift
[1261/1423] Compiling BoxSdkGen TaskCompletionRuleField.swift
[1262/1423] Compiling BoxSdkGen TaskTypeField.swift
[1263/1423] Compiling BoxSdkGen TaskAssignment.swift
[1264/1423] Compiling BoxSdkGen TaskAssignmentResolutionStateField.swift
[1265/1423] Compiling BoxSdkGen TaskAssignmentTypeField.swift
[1266/1423] Compiling BoxSdkGen TaskAssignments.swift
[1267/1423] Compiling BoxSdkGen Tasks.swift
[1268/1423] Compiling BoxSdkGen TemplateSigner.swift
[1269/1423] Compiling BoxSdkGen TemplateSignerRoleField.swift
[1270/1423] Compiling BoxSdkGen TemplateSignerInput.swift
[1271/1423] Compiling BoxSdkGen TemplateSignerInputContentTypeField.swift
[1272/1423] Compiling BoxSdkGen TemplateSignerInputCoordinatesField.swift
[1273/1423] Compiling BoxSdkGen TemplateSignerInputDimensionsField.swift
[1274/1423] Compiling BoxSdkGen TemplateSignerInputTypeField.swift
[1275/1423] Compiling BoxSdkGen TermsOfService.swift
[1276/1423] Compiling BoxSdkGen TermsOfServiceEnterpriseField.swift
[1277/1423] Compiling BoxSdkGen TermsOfServiceEnterpriseTypeField.swift
[1278/1423] Compiling BoxSdkGen SignRequestStatusField.swift
[1279/1423] Compiling BoxSdkGen SignRequestTypeField.swift
[1280/1423] Compiling BoxSdkGen SignRequestBase.swift
[1281/1423] Compiling BoxSdkGen SignRequestCreateRequest.swift
[1282/1423] Compiling BoxSdkGen SignRequestCreateRequestSignatureColorField.swift
[1283/1423] Compiling BoxSdkGen SignRequestCreateSigner.swift
[1284/1423] Compiling BoxSdkGen SignRequestCreateSignerRoleField.swift
[1285/1423] Compiling BoxSdkGen SignRequestPrefillTag.swift
[1286/1423] Compiling BoxSdkGen SignRequestSigner.swift
[1287/1423] Compiling BoxSdkGen SignRequestSignerSignerDecisionField.swift
[1288/1423] Compiling BoxSdkGen SignRequestSignerSignerDecisionTypeField.swift
[1289/1423] Compiling BoxSdkGen SignRequestSignerInput.swift
[1290/1423] Compiling BoxSdkGen SignRequestSignerInputContentTypeField.swift
[1291/1423] Compiling BoxSdkGen SignRequestSignerInputTypeField.swift
[1292/1423] Compiling BoxSdkGen SignRequests.swift
[1293/1423] Compiling BoxSdkGen SignTemplate.swift
[1294/1423] Compiling BoxSdkGen SignTemplateAdditionalInfoField.swift
[1295/1423] Compiling BoxSdkGen SignTemplateAdditionalInfoNonEditableField.swift
[1296/1423] Compiling BoxSdkGen SignTemplateAdditionalInfoRequiredField.swift
[1297/1423] Compiling BoxSdkGen SignTemplateAdditionalInfoRequiredSignersField.swift
[1298/1423] Compiling BoxSdkGen SignTemplateCustomBrandingField.swift
[1299/1423] Compiling BoxSdkGen SignTemplateReadySignLinkField.swift
[1300/1423] Compiling BoxSdkGen SignTemplateTypeField.swift
[1301/1423] Compiling BoxSdkGen SignTemplates.swift
[1302/1423] Compiling BoxSdkGen SkillCardsMetadata.swift
[1303/1423] Compiling BoxSdkGen TranscriptSkillCardInvocationTypeField.swift
[1304/1423] Compiling BoxSdkGen TranscriptSkillCardSkillCardTitleField.swift
[1305/1423] Compiling BoxSdkGen TranscriptSkillCardSkillCardTypeField.swift
[1306/1423] Compiling BoxSdkGen TranscriptSkillCardSkillField.swift
[1307/1423] Compiling BoxSdkGen TranscriptSkillCardSkillTypeField.swift
[1308/1423] Compiling BoxSdkGen TranscriptSkillCardTypeField.swift
[1309/1423] Compiling BoxSdkGen TrashFile.swift
[1310/1423] Compiling BoxSdkGen TrashFileItemStatusField.swift
[1311/1423] Compiling BoxSdkGen TrashFilePathCollectionEntriesField.swift
[1312/1423] Compiling BoxSdkGen TrashFilePathCollectionEntriesTypeField.swift
[1313/1423] Compiling BoxSdkGen TrashFilePathCollectionField.swift
[1314/1423] Compiling BoxSdkGen TrashFileTypeField.swift
[1315/1423] Compiling BoxSdkGen TrashFileRestored.swift
[1316/1423] Compiling BoxSdkGen TrashFileRestoredItemStatusField.swift
[1317/1423] Compiling BoxSdkGen TrashFileRestoredPathCollectionField.swift
[1318/1423] Compiling BoxSdkGen TrashFileRestoredTypeField.swift
[1319/1423] Compiling BoxSdkGen TrashFolder.swift
[1320/1423] Compiling BoxSdkGen TrashFolderItemStatusField.swift
[1321/1423] Compiling BoxSdkGen TrashFolderPathCollectionEntriesField.swift
[1322/1423] Compiling BoxSdkGen TrashFolderPathCollectionEntriesTypeField.swift
[1323/1423] Compiling BoxSdkGen TrashFolderPathCollectionField.swift
[1324/1423] Compiling BoxSdkGen TrashFolderTypeField.swift
[1325/1423] Compiling BoxSdkGen TrashFolderRestored.swift
[1326/1423] Compiling BoxSdkGen TrashFolderRestoredItemStatusField.swift
[1327/1423] Compiling BoxSdkGen TrashFolderRestoredPathCollectionField.swift
[1328/1423] Compiling BoxSdkGen TrashFolderRestoredTypeField.swift
[1329/1423] Compiling BoxSdkGen TrashWebLink.swift
[1330/1423] Compiling BoxSdkGen TrashWebLinkItemStatusField.swift
[1331/1423] Compiling BoxSdkGen TrashWebLinkPathCollectionEntriesField.swift
[1332/1423] Compiling BoxSdkGen TrashWebLinkPathCollectionEntriesTypeField.swift
[1333/1423] Compiling BoxSdkGen TrashWebLinkPathCollectionField.swift
[1334/1423] Compiling BoxSdkGen TrashWebLinkTypeField.swift
[1335/1423] Compiling BoxSdkGen TrashWebLinkRestored.swift
[1336/1423] Compiling BoxSdkGen TrashWebLinkRestoredItemStatusField.swift
[1337/1423] Compiling BoxSdkGen TrashWebLinkRestoredPathCollectionField.swift
[1338/1423] Compiling BoxSdkGen TrashWebLinkRestoredTypeField.swift
[1339/1423] Compiling BoxSdkGen UploadPart.swift
[1340/1423] Compiling BoxSdkGen UploadPartMini.swift
[1341/1423] Compiling BoxSdkGen UploadParts.swift
[1342/1423] Compiling BoxSdkGen UploadPartsOrderDirectionField.swift
[1343/1423] Compiling BoxSdkGen UploadPartsOrderField.swift
[1344/1423] Compiling BoxSdkGen UploadSession.swift
[1345/1423] Compiling BoxSdkGen UploadSessionSessionEndpointsField.swift
[1346/1423] Compiling BoxSdkGen UploadSessionTypeField.swift
[1347/1423] Compiling BoxSdkGen UploadUrl.swift
[1348/1423] Compiling BoxSdkGen UploadedPart.swift
[1349/1423] Compiling BoxSdkGen User.swift
[1350/1423] Compiling BoxSdkGen UserNotificationEmailField.swift
[1351/1423] Emitting module BoxSdkGen
/Users/admin/builder/spi-builder-workspace/Sources/Box/Errors/BoxAPIError.swift:7:14: warning: non-final class 'BoxAPIError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
  5 |
  6 | /// Describes API request related errors.
  7 | public class BoxAPIError: BoxSDKError {
    |              `- warning: non-final class 'BoxAPIError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
  8 |     /// The request information
  9 |     public let requestInfo: RequestInfo
/Users/admin/builder/spi-builder-workspace/Sources/Box/Errors/BoxAPIError.swift:9:16: warning: stored property 'requestInfo' of 'Sendable'-conforming class 'BoxAPIError' has non-sendable type 'RequestInfo'; this is an error in the Swift 6 language mode
  7 | public class BoxAPIError: BoxSDKError {
  8 |     /// The request information
  9 |     public let requestInfo: RequestInfo
    |                `- warning: stored property 'requestInfo' of 'Sendable'-conforming class 'BoxAPIError' has non-sendable type 'RequestInfo'; this is an error in the Swift 6 language mode
 10 |     /// The response information
 11 |     public let responseInfo: ResponseInfo
/Users/admin/builder/spi-builder-workspace/Sources/Box/Errors/RequestInfo.swift:3:14: note: class 'RequestInfo' does not conform to the 'Sendable' protocol
 1 | import Foundation
 2 | /// The class that represents the request information.
 3 | public class RequestInfo {
   |              `- note: class 'RequestInfo' does not conform to the 'Sendable' protocol
 4 |     /// The HTTP method for the Request
 5 |     public let method: String
/Users/admin/builder/spi-builder-workspace/Sources/Box/Errors/BoxAPIError.swift:11:16: warning: stored property 'responseInfo' of 'Sendable'-conforming class 'BoxAPIError' has non-sendable type 'ResponseInfo'; this is an error in the Swift 6 language mode
  9 |     public let requestInfo: RequestInfo
 10 |     /// The response information
 11 |     public let responseInfo: ResponseInfo
    |                `- warning: stored property 'responseInfo' of 'Sendable'-conforming class 'BoxAPIError' has non-sendable type 'ResponseInfo'; this is an error in the Swift 6 language mode
 12 |
 13 |     /// Initializer
/Users/admin/builder/spi-builder-workspace/Sources/Box/Errors/ResponseInfo.swift:4:14: note: class 'ResponseInfo' does not conform to the 'Sendable' protocol
 2 |
 3 | /// The class that represents the response information.
 4 | public class ResponseInfo {
   |              `- note: class 'ResponseInfo' does not conform to the 'Sendable' protocol
 5 |     /// The HTTP status code of the response
 6 |     public let statusCode: Int
/Users/admin/builder/spi-builder-workspace/Sources/Box/Errors/BoxNetworkError.swift:4:14: warning: non-final class 'BoxNetworkError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 2 |
 3 | /// Describes network related errors.
 4 | public class BoxNetworkError: BoxSDKError {
   |              `- warning: non-final class 'BoxNetworkError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 5 |
 6 |     /// Initializer
/Users/admin/builder/spi-builder-workspace/Sources/Box/Errors/BoxSDKError.swift:4:14: warning: non-final class 'BoxSDKError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 2 |
 3 | /// Describes general errors
 4 | public class BoxSDKError: Error {
   |              `- warning: non-final class 'BoxSDKError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 5 |     /// The error message
 6 |     public let message: String
/Users/admin/builder/spi-builder-workspace/Sources/Internal/ArrayInputStream.swift:22:1: warning: extension declares a conformance of imported type 'InputStream' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 20 | import Foundation
 21 |
 22 | extension InputStream: @unchecked Sendable {}
    | |- warning: extension declares a conformance of imported type 'InputStream' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 23 |
 24 | class ArrayInputStream: InputStream {
/Users/admin/builder/spi-builder-workspace/Sources/Internal/ArrayInputStream.swift:24:7: warning: class 'ArrayInputStream' must restate inherited '@unchecked Sendable' conformance
 22 | extension InputStream: @unchecked Sendable {}
 23 |
 24 | class ArrayInputStream: InputStream {
    |       `- warning: class 'ArrayInputStream' must restate inherited '@unchecked Sendable' conformance
 25 |     private let inputStreams: [InputStream]
 26 |
/Users/admin/builder/spi-builder-workspace/Sources/Internal/MemoryInputStream.swift:4:7: warning: class 'MemoryInputStream' must restate inherited '@unchecked Sendable' conformance
  2 |
  3 | /// A custom `InputStream` implementation that reads data from an in-memory `Data` object.
  4 | class MemoryInputStream: InputStream {
    |       `- warning: class 'MemoryInputStream' must restate inherited '@unchecked Sendable' conformance
  5 |     private var data: Data
  6 |     private var position: Int = 0
/Users/admin/builder/spi-builder-workspace/Sources/Networking/BoxConstants.swift:24:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'OSInformation' may have shared mutable state; this is an error in the Swift 6 language mode
21 | }
22 |
23 | fileprivate class OSInformation {
   |                   `- note: class 'OSInformation' does not conform to the 'Sendable' protocol
24 |     static let shared = OSInformation()
   |                |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'OSInformation' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 |     lazy var name: String = {
/Users/admin/builder/spi-builder-workspace/Sources/Networking/NetworkClient.swift:18:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'NetworkClient' may have shared mutable state; this is an error in the Swift 6 language mode
 15 |
 16 | /// Networking layer interface
 17 | public class NetworkClient {
    |              `- note: class 'NetworkClient' does not conform to the 'Sendable' protocol
 18 |     public static let shared = NetworkClient()
    |                       |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'NetworkClient' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 19 |
 20 |     private let utilityQueue = DispatchQueue.global(qos: .utility)
[1352/1423] Compiling BoxSdkGen UserStatusField.swift
[1353/1423] Compiling BoxSdkGen UserAvatar.swift
[1354/1423] Compiling BoxSdkGen UserAvatarPicUrlsField.swift
[1355/1423] Compiling BoxSdkGen UserBase.swift
[1356/1423] Compiling BoxSdkGen UserBaseTypeField.swift
[1357/1423] Compiling BoxSdkGen UserCollaborations.swift
[1358/1423] Compiling BoxSdkGen UserFull.swift
[1359/1423] Compiling BoxSdkGen UserFullEnterpriseField.swift
[1360/1423] Compiling BoxSdkGen UserFullEnterpriseTypeField.swift
[1361/1423] Compiling BoxSdkGen UserFullRoleField.swift
[1362/1423] Compiling BoxSdkGen UserIntegrationMappings.swift
[1363/1423] Compiling BoxSdkGen UserMini.swift
[1364/1423] Compiling BoxSdkGen Users.swift
[1365/1423] Compiling BoxSdkGen UsersOrderDirectionField.swift
[1366/1423] Compiling BoxSdkGen UsersOrderField.swift
[1367/1423] Compiling BoxSdkGen Watermark.swift
[1368/1423] Compiling BoxSdkGen WatermarkWatermarkField.swift
[1369/1423] Compiling BoxSdkGen WebLink.swift
[1370/1423] Compiling BoxSdkGen WebLinkItemStatusField.swift
[1371/1423] Compiling BoxSdkGen WebLinkPathCollectionField.swift
[1372/1423] Compiling BoxSdkGen WebLinkSharedLinkAccessField.swift
[1373/1423] Compiling BoxSdkGen WebLinkSharedLinkEffectiveAccessField.swift
[1374/1423] Compiling BoxSdkGen WebLinkSharedLinkEffectivePermissionField.swift
[1375/1423] Compiling BoxSdkGen WebLinkSharedLinkField.swift
[1376/1423] Compiling BoxSdkGen WebLinkSharedLinkPermissionsField.swift
[1377/1423] Compiling BoxSdkGen WebLinkBase.swift
[1378/1423] Compiling BoxSdkGen WebLinkBaseTypeField.swift
[1379/1423] Compiling BoxSdkGen WebLinkMini.swift
[1380/1423] Compiling BoxSdkGen Webhook.swift
[1381/1423] Compiling BoxSdkGen WebhookTriggersField.swift
[1382/1423] Compiling BoxSdkGen WebhookInvocation.swift
[1383/1423] Compiling BoxSdkGen WebhookInvocationTriggerField.swift
[1384/1423] Compiling BoxSdkGen WebhookInvocationTypeField.swift
[1385/1423] Compiling BoxSdkGen WebhookMini.swift
[1386/1423] Compiling BoxSdkGen WebhookMiniTargetField.swift
[1387/1423] Compiling BoxSdkGen WebhookMiniTargetTypeField.swift
[1388/1423] Compiling BoxSdkGen WebhookMiniTypeField.swift
[1389/1423] Compiling BoxSdkGen Webhooks.swift
[1390/1423] Compiling BoxSdkGen Workflow.swift
[1391/1423] Compiling BoxSdkGen WorkflowFlowsField.swift
[1392/1423] Compiling BoxSdkGen WorkflowFlowsOutcomesActionTypeField.swift
[1393/1423] Compiling BoxSdkGen WorkflowFlowsOutcomesField.swift
[1394/1423] Compiling BoxSdkGen WorkflowFlowsOutcomesIfRejectedActionTypeField.swift
[1395/1423] Compiling BoxSdkGen WorkflowFlowsOutcomesIfRejectedField.swift
[1396/1423] Compiling BoxSdkGen WorkflowFlowsOutcomesIfRejectedTypeField.swift
[1397/1423] Compiling BoxSdkGen WorkflowFlowsOutcomesTypeField.swift
[1398/1423] Compiling BoxSdkGen WorkflowFlowsTriggerField.swift
[1399/1423] Compiling BoxSdkGen WorkflowFlowsTriggerScopeField.swift
[1400/1423] Compiling BoxSdkGen WorkflowFlowsTriggerScopeObjectField.swift
[1401/1423] Compiling BoxSdkGen WorkflowFlowsTriggerScopeObjectTypeField.swift
[1402/1423] Compiling BoxSdkGen WorkflowFlowsTriggerScopeTypeField.swift
[1403/1423] Compiling BoxSdkGen WorkflowFlowsTriggerTriggerTypeField.swift
[1404/1423] Compiling BoxSdkGen WorkflowFlowsTriggerTypeField.swift
[1405/1423] Compiling BoxSdkGen WorkflowFlowsTypeField.swift
[1406/1423] Compiling BoxSdkGen WorkflowFull.swift
[1407/1423] Compiling BoxSdkGen WorkflowMini.swift
[1408/1423] Compiling BoxSdkGen WorkflowMiniTypeField.swift
[1409/1423] Compiling BoxSdkGen Workflows.swift
[1410/1423] Compiling BoxSdkGen ZipDownload.swift
[1411/1423] Compiling BoxSdkGen ZipDownloadNameConflictsField.swift
[1412/1423] Compiling BoxSdkGen ZipDownloadNameConflictsTypeField.swift
[1413/1423] Compiling BoxSdkGen ZipDownloadRequest.swift
[1414/1423] Compiling BoxSdkGen ZipDownloadRequestItemsField.swift
[1415/1423] Compiling BoxSdkGen ZipDownloadRequestItemsTypeField.swift
[1416/1423] Compiling BoxSdkGen ZipDownloadStatus.swift
[1417/1423] Compiling BoxSdkGen ZipDownloadStatusStateField.swift
[1418/1423] Compiling BoxSdkGen AnyCodeable.swift
[1419/1423] Compiling BoxSdkGen Codable+Extensions.swift
[1420/1423] Compiling BoxSdkGen CodableStringEnum.swift
[1421/1423] Compiling BoxSdkGen JsonUtils.swift
[1422/1423] Compiling BoxSdkGen SerializedData.swift
[1423/1423] Compiling BoxSdkGen resource_bundle_accessor.swift
Build complete! (38.18s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "BoxSdkGen",
  "name" : "BoxSdkGen",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    }
  ],
  "products" : [
    {
      "name" : "BoxSdkGen",
      "targets" : [
        "BoxSdkGen"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "BoxSdkGenTests",
      "module_type" : "SwiftTarget",
      "name" : "BoxSdkGenTests",
      "path" : "Tests",
      "sources" : [
        "Ai/AiManagerTests.swift",
        "AppItemAssociations/AppItemAssociationsManagerTests.swift",
        "Auth/AuthManagerTests.swift",
        "Avatars/AvatarsManagerTests.swift",
        "ChunkedUploads/ChunkedUploadsManagerTests.swift",
        "ChunkedUploads/TestPartAccumulator.swift",
        "Classifications/ClassificationsManagerTests.swift",
        "Client/ClientManagerTests.swift",
        "CollaborationAllowlistEntries/CollaborationAllowlistEntriesManagerTests.swift",
        "CollaborationAllowlistExemptTargets/CollaborationAllowlistExemptTargetsManagerTests.swift",
        "Collections/CollectionsManagerTests.swift",
        "Comments/CommentsManagerTests.swift",
        "Commons/CommonsManager.swift",
        "Downloads/DownloadsManagerTests.swift",
        "EmailAliases/EmailAliasesManagerTests.swift",
        "FileClassifications/FileClassificationsManagerTests.swift",
        "FileMetadata/FileMetadataManagerTests.swift",
        "FileRequests/FileRequestsManagerTests.swift",
        "FileVersionLegalHolds/FileVersionLegalHoldsManagerTests.swift",
        "FileVersionRetentions/FileVersionRetentionsManagerTests.swift",
        "FileVersions/FileVersionsManagerTests.swift",
        "FileWatermarks/FileWatermarksManagerTests.swift",
        "Files/FilesManagerTests.swift",
        "FolderClassifications/FolderClassificationsManagerTests.swift",
        "FolderLocks/FolderLocksManagerTests.swift",
        "FolderMetadata/FolderMetadataManagerTests.swift",
        "FolderWatermarks/FolderWatermarksManagerTests.swift",
        "Folders/FoldersManagerTests.swift",
        "Groups/GroupsManagerTests.swift",
        "IntegrationMappings/IntegrationMappingsManagerTests.swift",
        "Invites/InvitesManagerTests.swift",
        "LegalHoldPolicies/LegalHoldPoliciesManagerTests.swift",
        "LegalHoldPolicyAssignments/LegalHoldPolicyAssignmentsManagerTests.swift",
        "ListCollaborations/ListCollaborationsManagerTests.swift",
        "Memberships/MembershipsManagerTests.swift",
        "MetadataCascadePolicies/MetadataCascadePoliciesManagerTests.swift",
        "MetadataTemplates/MetadataTemplatesManagerTests.swift",
        "RecentItems/RecentItemsManagerTests.swift",
        "RetentionPolicies/RetentionPoliciesManagerTests.swift",
        "RetentionPolicyAssignments/RetentionPolicyAssignmentsManagerTests.swift",
        "SessionTermination/SessionTerminationManagerTests.swift",
        "SharedLinksFiles/SharedLinksFilesManagerTests.swift",
        "SharedLinksFolders/SharedLinksFoldersManagerTests.swift",
        "SharedLinksWebLinks/SharedLinksWebLinksManagerTests.swift",
        "ShieldInformationBarrierReports/ShieldInformationBarrierReportsManagerTests.swift",
        "ShieldInformationBarrierSegmentMembers/ShieldInformationBarrierSegmentMembersManagerTests.swift",
        "ShieldInformationBarrierSegmentRestrictions/ShieldInformationBarrierSegmentRestrictionsManagerTests.swift",
        "ShieldInformationBarrierSegments/ShieldInformationBarrierSegmentsManagerTests.swift",
        "ShieldInformationBarriers/ShieldInformationBarriersManagerTests.swift",
        "SignRequests/SignRequestsManagerTests.swift",
        "SignTemplates/SignTemplatesManagerTests.swift",
        "StoragePolicicyAssignments/StoragePolicicyAssignmentsManagerTests.swift",
        "StoragePolicies/StoragePoliciesManagerTests.swift",
        "TaskAssignments/TaskAssignmentsManagerTests.swift",
        "Tasks/TasksManagerTests.swift",
        "TermsOfServiceUserStatuses/TermsOfServiceUserStatusesManagerTests.swift",
        "TermsOfServices/TermsOfServicesManagerTests.swift",
        "Transfer/TransferManagerTests.swift",
        "TrashedFiles/TrashedFilesManagerTests.swift",
        "TrashedFolders/TrashedFoldersManagerTests.swift",
        "TrashedItems/TrashedItemsManagerTests.swift",
        "TrashedWebLinks/TrashedWebLinksManagerTests.swift",
        "URL+Extensions.swift",
        "Uploads/UploadsManagerTests.swift",
        "UserCollaborations/UserCollaborationsManagerTests.swift",
        "Users/UsersManagerTests.swift",
        "Webhooks/WebhooksManagerTests.swift",
        "Weblinks/WeblinksManagerTests.swift",
        "Workflows/WorkflowsManagerTests.swift",
        "XCTest+Extensions.swift"
      ],
      "target_dependencies" : [
        "BoxSdkGen"
      ],
      "type" : "test"
    },
    {
      "c99name" : "BoxSdkGen",
      "module_type" : "SwiftTarget",
      "name" : "BoxSdkGen",
      "path" : "Sources",
      "product_memberships" : [
        "BoxSdkGen"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/PrivacyInfo.xcprivacy",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "Box/CcgAuth/BoxCCGAuth.swift",
        "Box/CcgAuth/CCGConfig.swift",
        "Box/DeveloperTokenAuth/BoxDeveloperTokenAuth.swift",
        "Box/DeveloperTokenAuth/DeveloperTokenConfig.swift",
        "Box/Errors/BoxAPIError.swift",
        "Box/Errors/BoxNetworkError.swift",
        "Box/Errors/BoxSDKError.swift",
        "Box/Errors/RequestInfo.swift",
        "Box/Errors/ResponseInfo.swift",
        "Box/InMemoryTokenStorage.swift",
        "Box/KeychainTokenStorage.swift",
        "Box/Oauth/BoxOAuth+LoginFlow.swift",
        "Box/Oauth/BoxOAuth.swift",
        "Box/Oauth/BoxOAuthWebAuthentication.swift",
        "Box/Oauth/GetAuthorizeUrlOptions.swift",
        "Box/Oauth/OAuthConfig.swift",
        "Box/TokenStorage.swift",
        "Client/BoxClient.swift",
        "Internal/ArrayInputStream.swift",
        "Internal/Data+Extensions.swift",
        "Internal/DateFormatter+Convenience.swift",
        "Internal/Hash.swift",
        "Internal/MemoryInputStream.swift",
        "Internal/SHA1.swift",
        "Internal/StreamSequence.swift",
        "Internal/Utils.swift",
        "Managers/Ai/AiManager.swift",
        "Managers/Ai/CreateAiAskHeaders.swift",
        "Managers/Ai/CreateAiExtractHeaders.swift",
        "Managers/Ai/CreateAiExtractStructuredHeaders.swift",
        "Managers/Ai/CreateAiTextGenHeaders.swift",
        "Managers/Ai/GetAiAgentDefaultConfigHeaders.swift",
        "Managers/Ai/GetAiAgentDefaultConfigQueryParams.swift",
        "Managers/Ai/GetAiAgentDefaultConfigQueryParamsModeField.swift",
        "Managers/AppItemAssociations/AppItemAssociationsManager.swift",
        "Managers/AppItemAssociations/GetFileAppItemAssociationsHeaders.swift",
        "Managers/AppItemAssociations/GetFileAppItemAssociationsQueryParams.swift",
        "Managers/AppItemAssociations/GetFolderAppItemAssociationsHeaders.swift",
        "Managers/AppItemAssociations/GetFolderAppItemAssociationsQueryParams.swift",
        "Managers/Authorization/AuthorizationManager.swift",
        "Managers/Authorization/AuthorizeUserHeaders.swift",
        "Managers/Authorization/AuthorizeUserQueryParams.swift",
        "Managers/Authorization/AuthorizeUserQueryParamsResponseTypeField.swift",
        "Managers/Authorization/RefreshAccessTokenHeaders.swift",
        "Managers/Authorization/RequestAccessTokenHeaders.swift",
        "Managers/Authorization/RevokeAccessTokenHeaders.swift",
        "Managers/Avatars/AvatarsManager.swift",
        "Managers/Avatars/CreateUserAvatarHeaders.swift",
        "Managers/Avatars/CreateUserAvatarRequestBody.swift",
        "Managers/Avatars/DeleteUserAvatarHeaders.swift",
        "Managers/Avatars/GetUserAvatarHeaders.swift",
        "Managers/ChunkedUploads/ChunkedUploadsManager.swift",
        "Managers/ChunkedUploads/CreateFileUploadSessionCommitByUrlHeaders.swift",
        "Managers/ChunkedUploads/CreateFileUploadSessionCommitByUrlRequestBody.swift",
        "Managers/ChunkedUploads/CreateFileUploadSessionCommitHeaders.swift",
        "Managers/ChunkedUploads/CreateFileUploadSessionCommitRequestBody.swift",
        "Managers/ChunkedUploads/CreateFileUploadSessionForExistingFileHeaders.swift",
        "Managers/ChunkedUploads/CreateFileUploadSessionForExistingFileRequestBody.swift",
        "Managers/ChunkedUploads/CreateFileUploadSessionHeaders.swift",
        "Managers/ChunkedUploads/CreateFileUploadSessionRequestBody.swift",
        "Managers/ChunkedUploads/DeleteFileUploadSessionByIdHeaders.swift",
        "Managers/ChunkedUploads/DeleteFileUploadSessionByUrlHeaders.swift",
        "Managers/ChunkedUploads/GetFileUploadSessionByIdHeaders.swift",
        "Managers/ChunkedUploads/GetFileUploadSessionByUrlHeaders.swift",
        "Managers/ChunkedUploads/GetFileUploadSessionPartsByUrlHeaders.swift",
        "Managers/ChunkedUploads/GetFileUploadSessionPartsByUrlQueryParams.swift",
        "Managers/ChunkedUploads/GetFileUploadSessionPartsHeaders.swift",
        "Managers/ChunkedUploads/GetFileUploadSessionPartsQueryParams.swift",
        "Managers/ChunkedUploads/PartAccumulator.swift",
        "Managers/ChunkedUploads/UploadFilePartByUrlHeaders.swift",
        "Managers/ChunkedUploads/UploadFilePartHeaders.swift",
        "Managers/Classifications/AddClassificationHeaders.swift",
        "Managers/Classifications/AddClassificationRequestBody.swift",
        "Managers/Classifications/AddClassificationRequestBodyDataField.swift",
        "Managers/Classifications/AddClassificationRequestBodyDataStaticConfigClassificationField.swift",
        "Managers/Classifications/AddClassificationRequestBodyDataStaticConfigField.swift",
        "Managers/Classifications/AddClassificationRequestBodyFieldKeyField.swift",
        "Managers/Classifications/AddClassificationRequestBodyOpField.swift",
        "Managers/Classifications/ClassificationsManager.swift",
        "Managers/Classifications/CreateClassificationTemplateHeaders.swift",
        "Managers/Classifications/CreateClassificationTemplateRequestBody.swift",
        "Managers/Classifications/CreateClassificationTemplateRequestBodyDisplayNameField.swift",
        "Managers/Classifications/CreateClassificationTemplateRequestBodyFieldsDisplayNameField.swift",
        "Managers/Classifications/CreateClassificationTemplateRequestBodyFieldsField.swift",
        "Managers/Classifications/CreateClassificationTemplateRequestBodyFieldsKeyField.swift",
        "Managers/Classifications/CreateClassificationTemplateRequestBodyFieldsOptionsField.swift",
        "Managers/Classifications/CreateClassificationTemplateRequestBodyFieldsOptionsStaticConfigClassificationField.swift",
        "Managers/Classifications/CreateClassificationTemplateRequestBodyFieldsOptionsStaticConfigField.swift",
        "Managers/Classifications/CreateClassificationTemplateRequestBodyFieldsTypeField.swift",
        "Managers/Classifications/CreateClassificationTemplateRequestBodyScopeField.swift",
        "Managers/Classifications/CreateClassificationTemplateRequestBodyTemplateKeyField.swift",
        "Managers/Classifications/GetClassificationTemplateHeaders.swift",
        "Managers/Classifications/UpdateClassificationHeaders.swift",
        "Managers/Classifications/UpdateClassificationRequestBody.swift",
        "Managers/Classifications/UpdateClassificationRequestBodyDataField.swift",
        "Managers/Classifications/UpdateClassificationRequestBodyDataStaticConfigClassificationField.swift",
        "Managers/Classifications/UpdateClassificationRequestBodyDataStaticConfigField.swift",
        "Managers/Classifications/UpdateClassificationRequestBodyFieldKeyField.swift",
        "Managers/Classifications/UpdateClassificationRequestBodyOpField.swift",
        "Managers/CollaborationAllowlistEntries/CollaborationAllowlistEntriesManager.swift",
        "Managers/CollaborationAllowlistEntries/CreateCollaborationWhitelistEntryHeaders.swift",
        "Managers/CollaborationAllowlistEntries/CreateCollaborationWhitelistEntryRequestBody.swift",
        "Managers/CollaborationAllowlistEntries/CreateCollaborationWhitelistEntryRequestBodyDirectionField.swift",
        "Managers/CollaborationAllowlistEntries/DeleteCollaborationWhitelistEntryByIdHeaders.swift",
        "Managers/CollaborationAllowlistEntries/GetCollaborationWhitelistEntriesHeaders.swift",
        "Managers/CollaborationAllowlistEntries/GetCollaborationWhitelistEntriesQueryParams.swift",
        "Managers/CollaborationAllowlistEntries/GetCollaborationWhitelistEntryByIdHeaders.swift",
        "Managers/CollaborationAllowlistExemptTargets/CollaborationAllowlistExemptTargetsManager.swift",
        "Managers/CollaborationAllowlistExemptTargets/CreateCollaborationWhitelistExemptTargetHeaders.swift",
        "Managers/CollaborationAllowlistExemptTargets/CreateCollaborationWhitelistExemptTargetRequestBody.swift",
        "Managers/CollaborationAllowlistExemptTargets/CreateCollaborationWhitelistExemptTargetRequestBodyUserField.swift",
        "Managers/CollaborationAllowlistExemptTargets/DeleteCollaborationWhitelistExemptTargetByIdHeaders.swift",
        "Managers/CollaborationAllowlistExemptTargets/GetCollaborationWhitelistExemptTargetByIdHeaders.swift",
        "Managers/CollaborationAllowlistExemptTargets/GetCollaborationWhitelistExemptTargetsHeaders.swift",
        "Managers/CollaborationAllowlistExemptTargets/GetCollaborationWhitelistExemptTargetsQueryParams.swift",
        "Managers/Collections/CollectionsManager.swift",
        "Managers/Collections/GetCollectionItemsHeaders.swift",
        "Managers/Collections/GetCollectionItemsQueryParams.swift",
        "Managers/Collections/GetCollectionsHeaders.swift",
        "Managers/Collections/GetCollectionsQueryParams.swift",
        "Managers/Comments/CommentsManager.swift",
        "Managers/Comments/CreateCommentHeaders.swift",
        "Managers/Comments/CreateCommentQueryParams.swift",
        "Managers/Comments/CreateCommentRequestBody.swift",
        "Managers/Comments/CreateCommentRequestBodyItemField.swift",
        "Managers/Comments/CreateCommentRequestBodyItemTypeField.swift",
        "Managers/Comments/DeleteCommentByIdHeaders.swift",
        "Managers/Comments/GetCommentByIdHeaders.swift",
        "Managers/Comments/GetCommentByIdQueryParams.swift",
        "Managers/Comments/GetFileCommentsHeaders.swift",
        "Managers/Comments/GetFileCommentsQueryParams.swift",
        "Managers/Comments/UpdateCommentByIdHeaders.swift",
        "Managers/Comments/UpdateCommentByIdQueryParams.swift",
        "Managers/Comments/UpdateCommentByIdRequestBody.swift",
        "Managers/DevicePinners/DeleteDevicePinnerByIdHeaders.swift",
        "Managers/DevicePinners/DevicePinnersManager.swift",
        "Managers/DevicePinners/GetDevicePinnerByIdHeaders.swift",
        "Managers/DevicePinners/GetEnterpriseDevicePinnersHeaders.swift",
        "Managers/DevicePinners/GetEnterpriseDevicePinnersQueryParams.swift",
        "Managers/DevicePinners/GetEnterpriseDevicePinnersQueryParamsDirectionField.swift",
        "Managers/Downloads/DownloadFileHeaders.swift",
        "Managers/Downloads/DownloadFileQueryParams.swift",
        "Managers/Downloads/DownloadsManager.swift",
        "Managers/EmailAliases/CreateUserEmailAliasHeaders.swift",
        "Managers/EmailAliases/CreateUserEmailAliasRequestBody.swift",
        "Managers/EmailAliases/DeleteUserEmailAliasByIdHeaders.swift",
        "Managers/EmailAliases/EmailAliasesManager.swift",
        "Managers/EmailAliases/GetUserEmailAliasesHeaders.swift",
        "Managers/Events/EventsManager.swift",
        "Managers/Events/GetEventsHeaders.swift",
        "Managers/Events/GetEventsQueryParams.swift",
        "Managers/Events/GetEventsQueryParamsEventTypeField.swift",
        "Managers/Events/GetEventsQueryParamsStreamTypeField.swift",
        "Managers/Events/GetEventsWithLongPollingHeaders.swift",
        "Managers/FileClassifications/AddClassificationToFileHeaders.swift",
        "Managers/FileClassifications/AddClassificationToFileRequestBody.swift",
        "Managers/FileClassifications/DeleteClassificationFromFileHeaders.swift",
        "Managers/FileClassifications/FileClassificationsManager.swift",
        "Managers/FileClassifications/GetClassificationOnFileHeaders.swift",
        "Managers/FileClassifications/UpdateClassificationOnFileHeaders.swift",
        "Managers/FileClassifications/UpdateClassificationOnFileRequestBody.swift",
        "Managers/FileClassifications/UpdateClassificationOnFileRequestBodyOpField.swift",
        "Managers/FileClassifications/UpdateClassificationOnFileRequestBodyPathField.swift",
        "Managers/FileMetadata/CreateFileMetadataByIdHeaders.swift",
        "Managers/FileMetadata/CreateFileMetadataByIdRequestBody.swift",
        "Managers/FileMetadata/CreateFileMetadataByIdScope.swift",
        "Managers/FileMetadata/DeleteFileMetadataByIdHeaders.swift",
        "Managers/FileMetadata/DeleteFileMetadataByIdScope.swift",
        "Managers/FileMetadata/FileMetadataManager.swift",
        "Managers/FileMetadata/GetFileMetadataByIdHeaders.swift",
        "Managers/FileMetadata/GetFileMetadataByIdScope.swift",
        "Managers/FileMetadata/GetFileMetadataHeaders.swift",
        "Managers/FileMetadata/UpdateFileMetadataByIdHeaders.swift",
        "Managers/FileMetadata/UpdateFileMetadataByIdRequestBody.swift",
        "Managers/FileMetadata/UpdateFileMetadataByIdRequestBodyOpField.swift",
        "Managers/FileMetadata/UpdateFileMetadataByIdScope.swift",
        "Managers/FileRequests/CreateFileRequestCopyHeaders.swift",
        "Managers/FileRequests/DeleteFileRequestByIdHeaders.swift",
        "Managers/FileRequests/FileRequestsManager.swift",
        "Managers/FileRequests/GetFileRequestByIdHeaders.swift",
        "Managers/FileRequests/UpdateFileRequestByIdHeaders.swift",
        "Managers/FileVersionLegalHolds/FileVersionLegalHoldsManager.swift",
        "Managers/FileVersionLegalHolds/GetFileVersionLegalHoldByIdHeaders.swift",
        "Managers/FileVersionLegalHolds/GetFileVersionLegalHoldsHeaders.swift",
        "Managers/FileVersionLegalHolds/GetFileVersionLegalHoldsQueryParams.swift",
        "Managers/FileVersionRetentions/FileVersionRetentionsManager.swift",
        "Managers/FileVersionRetentions/GetFileVersionRetentionByIdHeaders.swift",
        "Managers/FileVersionRetentions/GetFileVersionRetentionsHeaders.swift",
        "Managers/FileVersionRetentions/GetFileVersionRetentionsQueryParams.swift",
        "Managers/FileVersionRetentions/GetFileVersionRetentionsQueryParamsDispositionActionField.swift",
        "Managers/FileVersions/DeleteFileVersionByIdHeaders.swift",
        "Managers/FileVersions/FileVersionsManager.swift",
        "Managers/FileVersions/GetFileVersionByIdHeaders.swift",
        "Managers/FileVersions/GetFileVersionByIdQueryParams.swift",
        "Managers/FileVersions/GetFileVersionsHeaders.swift",
        "Managers/FileVersions/GetFileVersionsQueryParams.swift",
        "Managers/FileVersions/PromoteFileVersionHeaders.swift",
        "Managers/FileVersions/PromoteFileVersionQueryParams.swift",
        "Managers/FileVersions/PromoteFileVersionRequestBody.swift",
        "Managers/FileVersions/PromoteFileVersionRequestBodyTypeField.swift",
        "Managers/FileVersions/UpdateFileVersionByIdHeaders.swift",
        "Managers/FileVersions/UpdateFileVersionByIdRequestBody.swift",
        "Managers/FileWatermarks/DeleteFileWatermarkHeaders.swift",
        "Managers/FileWatermarks/FileWatermarksManager.swift",
        "Managers/FileWatermarks/GetFileWatermarkHeaders.swift",
        "Managers/FileWatermarks/UpdateFileWatermarkHeaders.swift",
        "Managers/FileWatermarks/UpdateFileWatermarkRequestBody.swift",
        "Managers/FileWatermarks/UpdateFileWatermarkRequestBodyWatermarkField.swift",
        "Managers/FileWatermarks/UpdateFileWatermarkRequestBodyWatermarkImprintField.swift",
        "Managers/Files/CopyFileHeaders.swift",
        "Managers/Files/CopyFileQueryParams.swift",
        "Managers/Files/CopyFileRequestBody.swift",
        "Managers/Files/CopyFileRequestBodyParentField.swift",
        "Managers/Files/DeleteFileByIdHeaders.swift",
        "Managers/Files/FilesManager.swift",
        "Managers/Files/GetFileByIdHeaders.swift",
        "Managers/Files/GetFileByIdQueryParams.swift",
        "Managers/Files/GetFileThumbnailByIdExtension.swift",
        "Managers/Files/GetFileThumbnailByIdHeaders.swift",
        "Managers/Files/GetFileThumbnailByIdQueryParams.swift",
        "Managers/Files/UpdateFileByIdHeaders.swift",
        "Managers/Files/UpdateFileByIdQueryParams.swift",
        "Managers/Files/UpdateFileByIdRequestBody.swift",
        "Managers/Files/UpdateFileByIdRequestBodyCollectionsField.swift",
        "Managers/Files/UpdateFileByIdRequestBodyLockAccessField.swift",
        "Managers/Files/UpdateFileByIdRequestBodyLockField.swift",
        "Managers/Files/UpdateFileByIdRequestBodyParentField.swift",
        "Managers/Files/UpdateFileByIdRequestBodyPermissionsCanDownloadField.swift",
        "Managers/Files/UpdateFileByIdRequestBodyPermissionsField.swift",
        "Managers/Files/UpdateFileByIdRequestBodySharedLinkAccessField.swift",
        "Managers/Files/UpdateFileByIdRequestBodySharedLinkField.swift",
        "Managers/Files/UpdateFileByIdRequestBodySharedLinkPermissionsField.swift",
        "Managers/FolderClassifications/AddClassificationToFolderHeaders.swift",
        "Managers/FolderClassifications/AddClassificationToFolderRequestBody.swift",
        "Managers/FolderClassifications/DeleteClassificationFromFolderHeaders.swift",
        "Managers/FolderClassifications/FolderClassificationsManager.swift",
        "Managers/FolderClassifications/GetClassificationOnFolderHeaders.swift",
        "Managers/FolderClassifications/UpdateClassificationOnFolderHeaders.swift",
        "Managers/FolderClassifications/UpdateClassificationOnFolderRequestBody.swift",
        "Managers/FolderClassifications/UpdateClassificationOnFolderRequestBodyOpField.swift",
        "Managers/FolderClassifications/UpdateClassificationOnFolderRequestBodyPathField.swift",
        "Managers/FolderLocks/CreateFolderLockHeaders.swift",
        "Managers/FolderLocks/CreateFolderLockRequestBody.swift",
        "Managers/FolderLocks/CreateFolderLockRequestBodyFolderField.swift",
        "Managers/FolderLocks/CreateFolderLockRequestBodyLockedOperationsField.swift",
        "Managers/FolderLocks/DeleteFolderLockByIdHeaders.swift",
        "Managers/FolderLocks/FolderLocksManager.swift",
        "Managers/FolderLocks/GetFolderLocksHeaders.swift",
        "Managers/FolderLocks/GetFolderLocksQueryParams.swift",
        "Managers/FolderMetadata/CreateFolderMetadataByIdHeaders.swift",
        "Managers/FolderMetadata/CreateFolderMetadataByIdRequestBody.swift",
        "Managers/FolderMetadata/CreateFolderMetadataByIdScope.swift",
        "Managers/FolderMetadata/DeleteFolderMetadataByIdHeaders.swift",
        "Managers/FolderMetadata/DeleteFolderMetadataByIdScope.swift",
        "Managers/FolderMetadata/FolderMetadataManager.swift",
        "Managers/FolderMetadata/GetFolderMetadataByIdHeaders.swift",
        "Managers/FolderMetadata/GetFolderMetadataByIdScope.swift",
        "Managers/FolderMetadata/GetFolderMetadataHeaders.swift",
        "Managers/FolderMetadata/UpdateFolderMetadataByIdHeaders.swift",
        "Managers/FolderMetadata/UpdateFolderMetadataByIdRequestBody.swift",
        "Managers/FolderMetadata/UpdateFolderMetadataByIdRequestBodyOpField.swift",
        "Managers/FolderMetadata/UpdateFolderMetadataByIdScope.swift",
        "Managers/FolderWatermarks/DeleteFolderWatermarkHeaders.swift",
        "Managers/FolderWatermarks/FolderWatermarksManager.swift",
        "Managers/FolderWatermarks/GetFolderWatermarkHeaders.swift",
        "Managers/FolderWatermarks/UpdateFolderWatermarkHeaders.swift",
        "Managers/FolderWatermarks/UpdateFolderWatermarkRequestBody.swift",
        "Managers/FolderWatermarks/UpdateFolderWatermarkRequestBodyWatermarkField.swift",
        "Managers/FolderWatermarks/UpdateFolderWatermarkRequestBodyWatermarkImprintField.swift",
        "Managers/Folders/CopyFolderHeaders.swift",
        "Managers/Folders/CopyFolderQueryParams.swift",
        "Managers/Folders/CopyFolderRequestBody.swift",
        "Managers/Folders/CopyFolderRequestBodyParentField.swift",
        "Managers/Folders/CreateFolderHeaders.swift",
        "Managers/Folders/CreateFolderQueryParams.swift",
        "Managers/Folders/CreateFolderRequestBody.swift",
        "Managers/Folders/CreateFolderRequestBodyFolderUploadEmailAccessField.swift",
        "Managers/Folders/CreateFolderRequestBodyFolderUploadEmailField.swift",
        "Managers/Folders/CreateFolderRequestBodyParentField.swift",
        "Managers/Folders/CreateFolderRequestBodySyncStateField.swift",
        "Managers/Folders/DeleteFolderByIdHeaders.swift",
        "Managers/Folders/DeleteFolderByIdQueryParams.swift",
        "Managers/Folders/FoldersManager.swift",
        "Managers/Folders/GetFolderByIdHeaders.swift",
        "Managers/Folders/GetFolderByIdQueryParams.swift",
        "Managers/Folders/GetFolderByIdQueryParamsDirectionField.swift",
        "Managers/Folders/GetFolderByIdQueryParamsSortField.swift",
        "Managers/Folders/GetFolderItemsHeaders.swift",
        "Managers/Folders/GetFolderItemsQueryParams.swift",
        "Managers/Folders/GetFolderItemsQueryParamsDirectionField.swift",
        "Managers/Folders/GetFolderItemsQueryParamsSortField.swift",
        "Managers/Folders/UpdateFolderByIdHeaders.swift",
        "Managers/Folders/UpdateFolderByIdQueryParams.swift",
        "Managers/Folders/UpdateFolderByIdRequestBody.swift",
        "Managers/Folders/UpdateFolderByIdRequestBodyCollectionsField.swift",
        "Managers/Folders/UpdateFolderByIdRequestBodyFolderUploadEmailAccessField.swift",
        "Managers/Folders/UpdateFolderByIdRequestBodyFolderUploadEmailField.swift",
        "Managers/Folders/UpdateFolderByIdRequestBodyParentField.swift",
        "Managers/Folders/UpdateFolderByIdRequestBodySharedLinkAccessField.swift",
        "Managers/Folders/UpdateFolderByIdRequestBodySharedLinkField.swift",
        "Managers/Folders/UpdateFolderByIdRequestBodySharedLinkPermissionsField.swift",
        "Managers/Folders/UpdateFolderByIdRequestBodySyncStateField.swift",
        "Managers/Groups/CreateGroupHeaders.swift",
        "Managers/Groups/CreateGroupQueryParams.swift",
        "Managers/Groups/CreateGroupRequestBody.swift",
        "Managers/Groups/CreateGroupRequestBodyInvitabilityLevelField.swift",
        "Managers/Groups/CreateGroupRequestBodyMemberViewabilityLevelField.swift",
        "Managers/Groups/DeleteGroupByIdHeaders.swift",
        "Managers/Groups/GetGroupByIdHeaders.swift",
        "Managers/Groups/GetGroupByIdQueryParams.swift",
        "Managers/Groups/GetGroupsHeaders.swift",
        "Managers/Groups/GetGroupsQueryParams.swift",
        "Managers/Groups/GroupsManager.swift",
        "Managers/Groups/UpdateGroupByIdHeaders.swift",
        "Managers/Groups/UpdateGroupByIdQueryParams.swift",
        "Managers/Groups/UpdateGroupByIdRequestBody.swift",
        "Managers/Groups/UpdateGroupByIdRequestBodyInvitabilityLevelField.swift",
        "Managers/Groups/UpdateGroupByIdRequestBodyMemberViewabilityLevelField.swift",
        "Managers/IntegrationMappings/CreateSlackIntegrationMappingHeaders.swift",
        "Managers/IntegrationMappings/DeleteSlackIntegrationMappingByIdHeaders.swift",
        "Managers/IntegrationMappings/GetSlackIntegrationMappingHeaders.swift",
        "Managers/IntegrationMappings/GetSlackIntegrationMappingQueryParams.swift",
        "Managers/IntegrationMappings/GetSlackIntegrationMappingQueryParamsBoxItemTypeField.swift",
        "Managers/IntegrationMappings/GetSlackIntegrationMappingQueryParamsPartnerItemTypeField.swift",
        "Managers/IntegrationMappings/IntegrationMappingsManager.swift",
        "Managers/IntegrationMappings/UpdateSlackIntegrationMappingByIdHeaders.swift",
        "Managers/IntegrationMappings/UpdateSlackIntegrationMappingByIdRequestBody.swift",
        "Managers/Invites/CreateInviteHeaders.swift",
        "Managers/Invites/CreateInviteQueryParams.swift",
        "Managers/Invites/CreateInviteRequestBody.swift",
        "Managers/Invites/CreateInviteRequestBodyActionableByField.swift",
        "Managers/Invites/CreateInviteRequestBodyEnterpriseField.swift",
        "Managers/Invites/GetInviteByIdHeaders.swift",
        "Managers/Invites/GetInviteByIdQueryParams.swift",
        "Managers/Invites/InvitesManager.swift",
        "Managers/LegalHoldPolicies/CreateLegalHoldPolicyHeaders.swift",
        "Managers/LegalHoldPolicies/CreateLegalHoldPolicyRequestBody.swift",
        "Managers/LegalHoldPolicies/DeleteLegalHoldPolicyByIdHeaders.swift",
        "Managers/LegalHoldPolicies/GetLegalHoldPoliciesHeaders.swift",
        "Managers/LegalHoldPolicies/GetLegalHoldPoliciesQueryParams.swift",
        "Managers/LegalHoldPolicies/GetLegalHoldPolicyByIdHeaders.swift",
        "Managers/LegalHoldPolicies/LegalHoldPoliciesManager.swift",
        "Managers/LegalHoldPolicies/UpdateLegalHoldPolicyByIdHeaders.swift",
        "Managers/LegalHoldPolicies/UpdateLegalHoldPolicyByIdRequestBody.swift",
        "Managers/LegalHoldPolicyAssignments/CreateLegalHoldPolicyAssignmentHeaders.swift",
        "Managers/LegalHoldPolicyAssignments/CreateLegalHoldPolicyAssignmentRequestBody.swift",
        "Managers/LegalHoldPolicyAssignments/CreateLegalHoldPolicyAssignmentRequestBodyAssignToField.swift",
        "Managers/LegalHoldPolicyAssignments/CreateLegalHoldPolicyAssignmentRequestBodyAssignToTypeField.swift",
        "Managers/LegalHoldPolicyAssignments/DeleteLegalHoldPolicyAssignmentByIdHeaders.swift",
        "Managers/LegalHoldPolicyAssignments/GetLegalHoldPolicyAssignmentByIdHeaders.swift",
        "Managers/LegalHoldPolicyAssignments/GetLegalHoldPolicyAssignmentFileOnHoldHeaders.swift",
        "Managers/LegalHoldPolicyAssignments/GetLegalHoldPolicyAssignmentFileOnHoldQueryParams.swift",
        "Managers/LegalHoldPolicyAssignments/GetLegalHoldPolicyAssignmentsHeaders.swift",
        "Managers/LegalHoldPolicyAssignments/GetLegalHoldPolicyAssignmentsQueryParams.swift",
        "Managers/LegalHoldPolicyAssignments/GetLegalHoldPolicyAssignmentsQueryParamsAssignToTypeField.swift",
        "Managers/LegalHoldPolicyAssignments/LegalHoldPolicyAssignmentsManager.swift",
        "Managers/ListCollaborations/GetCollaborationsHeaders.swift",
        "Managers/ListCollaborations/GetCollaborationsQueryParams.swift",
        "Managers/ListCollaborations/GetCollaborationsQueryParamsStatusField.swift",
        "Managers/ListCollaborations/GetFileCollaborationsHeaders.swift",
        "Managers/ListCollaborations/GetFileCollaborationsQueryParams.swift",
        "Managers/ListCollaborations/GetFolderCollaborationsHeaders.swift",
        "Managers/ListCollaborations/GetFolderCollaborationsQueryParams.swift",
        "Managers/ListCollaborations/GetGroupCollaborationsHeaders.swift",
        "Managers/ListCollaborations/GetGroupCollaborationsQueryParams.swift",
        "Managers/ListCollaborations/ListCollaborationsManager.swift",
        "Managers/Memberships/CreateGroupMembershipHeaders.swift",
        "Managers/Memberships/CreateGroupMembershipQueryParams.swift",
        "Managers/Memberships/CreateGroupMembershipRequestBody.swift",
        "Managers/Memberships/CreateGroupMembershipRequestBodyGroupField.swift",
        "Managers/Memberships/CreateGroupMembershipRequestBodyRoleField.swift",
        "Managers/Memberships/CreateGroupMembershipRequestBodyUserField.swift",
        "Managers/Memberships/DeleteGroupMembershipByIdHeaders.swift",
        "Managers/Memberships/GetGroupMembershipByIdHeaders.swift",
        "Managers/Memberships/GetGroupMembershipByIdQueryParams.swift",
        "Managers/Memberships/GetGroupMembershipsHeaders.swift",
        "Managers/Memberships/GetGroupMembershipsQueryParams.swift",
        "Managers/Memberships/GetUserMembershipsHeaders.swift",
        "Managers/Memberships/GetUserMembershipsQueryParams.swift",
        "Managers/Memberships/MembershipsManager.swift",
        "Managers/Memberships/UpdateGroupMembershipByIdHeaders.swift",
        "Managers/Memberships/UpdateGroupMembershipByIdQueryParams.swift",
        "Managers/Memberships/UpdateGroupMembershipByIdRequestBody.swift",
        "Managers/Memberships/UpdateGroupMembershipByIdRequestBodyRoleField.swift",
        "Managers/MetadataCascadePolicies/ApplyMetadataCascadePolicyHeaders.swift",
        "Managers/MetadataCascadePolicies/ApplyMetadataCascadePolicyRequestBody.swift",
        "Managers/MetadataCascadePolicies/ApplyMetadataCascadePolicyRequestBodyConflictResolutionField.swift",
        "Managers/MetadataCascadePolicies/CreateMetadataCascadePolicyHeaders.swift",
        "Managers/MetadataCascadePolicies/CreateMetadataCascadePolicyRequestBody.swift",
        "Managers/MetadataCascadePolicies/CreateMetadataCascadePolicyRequestBodyScopeField.swift",
        "Managers/MetadataCascadePolicies/DeleteMetadataCascadePolicyByIdHeaders.swift",
        "Managers/MetadataCascadePolicies/GetMetadataCascadePoliciesHeaders.swift",
        "Managers/MetadataCascadePolicies/GetMetadataCascadePoliciesQueryParams.swift",
        "Managers/MetadataCascadePolicies/GetMetadataCascadePolicyByIdHeaders.swift",
        "Managers/MetadataCascadePolicies/MetadataCascadePoliciesManager.swift",
        "Managers/MetadataTemplates/CreateMetadataTemplateHeaders.swift",
        "Managers/MetadataTemplates/CreateMetadataTemplateRequestBody.swift",
        "Managers/MetadataTemplates/CreateMetadataTemplateRequestBodyFieldsField.swift",
        "Managers/MetadataTemplates/CreateMetadataTemplateRequestBodyFieldsOptionsField.swift",
        "Managers/MetadataTemplates/CreateMetadataTemplateRequestBodyFieldsTypeField.swift",
        "Managers/MetadataTemplates/DeleteMetadataTemplateHeaders.swift",
        "Managers/MetadataTemplates/DeleteMetadataTemplateScope.swift",
        "Managers/MetadataTemplates/GetEnterpriseMetadataTemplatesHeaders.swift",
        "Managers/MetadataTemplates/GetEnterpriseMetadataTemplatesQueryParams.swift",
        "Managers/MetadataTemplates/GetGlobalMetadataTemplatesHeaders.swift",
        "Managers/MetadataTemplates/GetGlobalMetadataTemplatesQueryParams.swift",
        "Managers/MetadataTemplates/GetMetadataTemplateByIdHeaders.swift",
        "Managers/MetadataTemplates/GetMetadataTemplateHeaders.swift",
        "Managers/MetadataTemplates/GetMetadataTemplateScope.swift",
        "Managers/MetadataTemplates/GetMetadataTemplatesByInstanceIdHeaders.swift",
        "Managers/MetadataTemplates/GetMetadataTemplatesByInstanceIdQueryParams.swift",
        "Managers/MetadataTemplates/MetadataTemplatesManager.swift",
        "Managers/MetadataTemplates/UpdateMetadataTemplateHeaders.swift",
        "Managers/MetadataTemplates/UpdateMetadataTemplateRequestBody.swift",
        "Managers/MetadataTemplates/UpdateMetadataTemplateRequestBodyOpField.swift",
        "Managers/MetadataTemplates/UpdateMetadataTemplateScope.swift",
        "Managers/RecentItems/GetRecentItemsHeaders.swift",
        "Managers/RecentItems/GetRecentItemsQueryParams.swift",
        "Managers/RecentItems/RecentItemsManager.swift",
        "Managers/RetentionPolicies/CreateRetentionPolicyHeaders.swift",
        "Managers/RetentionPolicies/CreateRetentionPolicyRequestBody.swift",
        "Managers/RetentionPolicies/CreateRetentionPolicyRequestBodyDispositionActionField.swift",
        "Managers/RetentionPolicies/CreateRetentionPolicyRequestBodyPolicyTypeField.swift",
        "Managers/RetentionPolicies/CreateRetentionPolicyRequestBodyRetentionTypeField.swift",
        "Managers/RetentionPolicies/DeleteRetentionPolicyByIdHeaders.swift",
        "Managers/RetentionPolicies/GetRetentionPoliciesHeaders.swift",
        "Managers/RetentionPolicies/GetRetentionPoliciesQueryParams.swift",
        "Managers/RetentionPolicies/GetRetentionPoliciesQueryParamsPolicyTypeField.swift",
        "Managers/RetentionPolicies/GetRetentionPolicyByIdHeaders.swift",
        "Managers/RetentionPolicies/GetRetentionPolicyByIdQueryParams.swift",
        "Managers/RetentionPolicies/RetentionPoliciesManager.swift",
        "Managers/RetentionPolicies/UpdateRetentionPolicyByIdHeaders.swift",
        "Managers/RetentionPolicies/UpdateRetentionPolicyByIdRequestBody.swift",
        "Managers/RetentionPolicyAssignments/CreateRetentionPolicyAssignmentHeaders.swift",
        "Managers/RetentionPolicyAssignments/CreateRetentionPolicyAssignmentRequestBody.swift",
        "Managers/RetentionPolicyAssignments/CreateRetentionPolicyAssignmentRequestBodyAssignToField.swift",
        "Managers/RetentionPolicyAssignments/CreateRetentionPolicyAssignmentRequestBodyAssignToTypeField.swift",
        "Managers/RetentionPolicyAssignments/CreateRetentionPolicyAssignmentRequestBodyFilterFieldsField.swift",
        "Managers/RetentionPolicyAssignments/DeleteRetentionPolicyAssignmentByIdHeaders.swift",
        "Managers/RetentionPolicyAssignments/GetFilesUnderRetentionPolicyAssignmentHeaders.swift",
        "Managers/RetentionPolicyAssignments/GetFilesUnderRetentionPolicyAssignmentQueryParams.swift",
        "Managers/RetentionPolicyAssignments/GetRetentionPolicyAssignmentByIdHeaders.swift",
        "Managers/RetentionPolicyAssignments/GetRetentionPolicyAssignmentByIdQueryParams.swift",
        "Managers/RetentionPolicyAssignments/GetRetentionPolicyAssignmentsHeaders.swift",
        "Managers/RetentionPolicyAssignments/GetRetentionPolicyAssignmentsQueryParams.swift",
        "Managers/RetentionPolicyAssignments/GetRetentionPolicyAssignmentsQueryParamsTypeField.swift",
        "Managers/RetentionPolicyAssignments/RetentionPolicyAssignmentsManager.swift",
        "Managers/Search/SearchByMetadataQueryHeaders.swift",
        "Managers/Search/SearchForContentHeaders.swift",
        "Managers/Search/SearchForContentQueryParams.swift",
        "Managers/Search/SearchForContentQueryParamsContentTypesField.swift",
        "Managers/Search/SearchForContentQueryParamsDirectionField.swift",
        "Managers/Search/SearchForContentQueryParamsScopeField.swift",
        "Managers/Search/SearchForContentQueryParamsSortField.swift",
        "Managers/Search/SearchForContentQueryParamsTrashContentField.swift",
        "Managers/Search/SearchForContentQueryParamsTypeField.swift",
        "Managers/Search/SearchManager.swift",
        "Managers/SessionTermination/SessionTerminationManager.swift",
        "Managers/SessionTermination/TerminateGroupsSessionsHeaders.swift",
        "Managers/SessionTermination/TerminateGroupsSessionsRequestBody.swift",
        "Managers/SessionTermination/TerminateUsersSessionsHeaders.swift",
        "Managers/SessionTermination/TerminateUsersSessionsRequestBody.swift",
        "Managers/SharedLinksFiles/AddShareLinkToFileHeaders.swift",
        "Managers/SharedLinksFiles/AddShareLinkToFileQueryParams.swift",
        "Managers/SharedLinksFiles/AddShareLinkToFileRequestBody.swift",
        "Managers/SharedLinksFiles/AddShareLinkToFileRequestBodySharedLinkAccessField.swift",
        "Managers/SharedLinksFiles/AddShareLinkToFileRequestBodySharedLinkField.swift",
        "Managers/SharedLinksFiles/AddShareLinkToFileRequestBodySharedLinkPermissionsField.swift",
        "Managers/SharedLinksFiles/FindFileForSharedLinkHeaders.swift",
        "Managers/SharedLinksFiles/FindFileForSharedLinkQueryParams.swift",
        "Managers/SharedLinksFiles/GetSharedLinkForFileHeaders.swift",
        "Managers/SharedLinksFiles/GetSharedLinkForFileQueryParams.swift",
        "Managers/SharedLinksFiles/RemoveSharedLinkFromFileHeaders.swift",
        "Managers/SharedLinksFiles/RemoveSharedLinkFromFileQueryParams.swift",
        "Managers/SharedLinksFiles/RemoveSharedLinkFromFileRequestBody.swift",
        "Managers/SharedLinksFiles/RemoveSharedLinkFromFileRequestBodySharedLinkField.swift",
        "Managers/SharedLinksFiles/SharedLinksFilesManager.swift",
        "Managers/SharedLinksFiles/UpdateSharedLinkOnFileHeaders.swift",
        "Managers/SharedLinksFiles/UpdateSharedLinkOnFileQueryParams.swift",
        "Managers/SharedLinksFiles/UpdateSharedLinkOnFileRequestBody.swift",
        "Managers/SharedLinksFiles/UpdateSharedLinkOnFileRequestBodySharedLinkAccessField.swift",
        "Managers/SharedLinksFiles/UpdateSharedLinkOnFileRequestBodySharedLinkField.swift",
        "Managers/SharedLinksFiles/UpdateSharedLinkOnFileRequestBodySharedLinkPermissionsField.swift",
        "Managers/SharedLinksFolders/AddShareLinkToFolderHeaders.swift",
        "Managers/SharedLinksFolders/AddShareLinkToFolderQueryParams.swift",
        "Managers/SharedLinksFolders/AddShareLinkToFolderRequestBody.swift",
        "Managers/SharedLinksFolders/AddShareLinkToFolderRequestBodySharedLinkAccessField.swift",
        "Managers/SharedLinksFolders/AddShareLinkToFolderRequestBodySharedLinkField.swift",
        "Managers/SharedLinksFolders/AddShareLinkToFolderRequestBodySharedLinkPermissionsField.swift",
        "Managers/SharedLinksFolders/FindFolderForSharedLinkHeaders.swift",
        "Managers/SharedLinksFolders/FindFolderForSharedLinkQueryParams.swift",
        "Managers/SharedLinksFolders/GetSharedLinkForFolderHeaders.swift",
        "Managers/SharedLinksFolders/GetSharedLinkForFolderQueryParams.swift",
        "Managers/SharedLinksFolders/RemoveSharedLinkFromFolderHeaders.swift",
        "Managers/SharedLinksFolders/RemoveSharedLinkFromFolderQueryParams.swift",
        "Managers/SharedLinksFolders/RemoveSharedLinkFromFolderRequestBody.swift",
        "Managers/SharedLinksFolders/RemoveSharedLinkFromFolderRequestBodySharedLinkField.swift",
        "Managers/SharedLinksFolders/SharedLinksFoldersManager.swift",
        "Managers/SharedLinksFolders/UpdateSharedLinkOnFolderHeaders.swift",
        "Managers/SharedLinksFolders/UpdateSharedLinkOnFolderQueryParams.swift",
        "Managers/SharedLinksFolders/UpdateSharedLinkOnFolderRequestBody.swift",
        "Managers/SharedLinksFolders/UpdateSharedLinkOnFolderRequestBodySharedLinkAccessField.swift",
        "Managers/SharedLinksFolders/UpdateSharedLinkOnFolderRequestBodySharedLinkField.swift",
        "Managers/SharedLinksFolders/UpdateSharedLinkOnFolderRequestBodySharedLinkPermissionsField.swift",
        "Managers/SharedLinksWebLinks/AddShareLinkToWebLinkHeaders.swift",
        "Managers/SharedLinksWebLinks/AddShareLinkToWebLinkQueryParams.swift",
        "Managers/SharedLinksWebLinks/AddShareLinkToWebLinkRequestBody.swift",
        "Managers/SharedLinksWebLinks/AddShareLinkToWebLinkRequestBodySharedLinkAccessField.swift",
        "Managers/SharedLinksWebLinks/AddShareLinkToWebLinkRequestBodySharedLinkField.swift",
        "Managers/SharedLinksWebLinks/AddShareLinkToWebLinkRequestBodySharedLinkPermissionsField.swift",
        "Managers/SharedLinksWebLinks/FindWebLinkForSharedLinkHeaders.swift",
        "Managers/SharedLinksWebLinks/FindWebLinkForSharedLinkQueryParams.swift",
        "Managers/SharedLinksWebLinks/GetSharedLinkForWebLinkHeaders.swift",
        "Managers/SharedLinksWebLinks/GetSharedLinkForWebLinkQueryParams.swift",
        "Managers/SharedLinksWebLinks/RemoveSharedLinkFromWebLinkHeaders.swift",
        "Managers/SharedLinksWebLinks/RemoveSharedLinkFromWebLinkQueryParams.swift",
        "Managers/SharedLinksWebLinks/RemoveSharedLinkFromWebLinkRequestBody.swift",
        "Managers/SharedLinksWebLinks/RemoveSharedLinkFromWebLinkRequestBodySharedLinkField.swift",
        "Managers/SharedLinksWebLinks/SharedLinksWebLinksManager.swift",
        "Managers/SharedLinksWebLinks/UpdateSharedLinkOnWebLinkHeaders.swift",
        "Managers/SharedLinksWebLinks/UpdateSharedLinkOnWebLinkQueryParams.swift",
        "Managers/SharedLinksWebLinks/UpdateSharedLinkOnWebLinkRequestBody.swift",
        "Managers/SharedLinksWebLinks/UpdateSharedLinkOnWebLinkRequestBodySharedLinkAccessField.swift",
        "Managers/SharedLinksWebLinks/UpdateSharedLinkOnWebLinkRequestBodySharedLinkField.swift",
        "Managers/SharedLinksWebLinks/UpdateSharedLinkOnWebLinkRequestBodySharedLinkPermissionsField.swift",
        "Managers/ShieldInformationBarrierReports/CreateShieldInformationBarrierReportHeaders.swift",
        "Managers/ShieldInformationBarrierReports/GetShieldInformationBarrierReportByIdHeaders.swift",
        "Managers/ShieldInformationBarrierReports/GetShieldInformationBarrierReportsHeaders.swift",
        "Managers/ShieldInformationBarrierReports/GetShieldInformationBarrierReportsQueryParams.swift",
        "Managers/ShieldInformationBarrierReports/ShieldInformationBarrierReportsManager.swift",
        "Managers/ShieldInformationBarrierSegmentMembers/CreateShieldInformationBarrierSegmentMemberHeaders.swift",
        "Managers/ShieldInformationBarrierSegmentMembers/CreateShieldInformationBarrierSegmentMemberRequestBody.swift",
        "Managers/ShieldInformationBarrierSegmentMembers/CreateShieldInformationBarrierSegmentMemberRequestBodyShieldInformationBarrierSegmentField.swift",
        "Managers/ShieldInformationBarrierSegmentMembers/CreateShieldInformationBarrierSegmentMemberRequestBodyShieldInformationBarrierSegmentTypeField.swift",
        "Managers/ShieldInformationBarrierSegmentMembers/CreateShieldInformationBarrierSegmentMemberRequestBodyTypeField.swift",
        "Managers/ShieldInformationBarrierSegmentMembers/DeleteShieldInformationBarrierSegmentMemberByIdHeaders.swift",
        "Managers/ShieldInformationBarrierSegmentMembers/GetShieldInformationBarrierSegmentMemberByIdHeaders.swift",
        "Managers/ShieldInformationBarrierSegmentMembers/GetShieldInformationBarrierSegmentMembersHeaders.swift",
        "Managers/ShieldInformationBarrierSegmentMembers/GetShieldInformationBarrierSegmentMembersQueryParams.swift",
        "Managers/ShieldInformationBarrierSegmentMembers/ShieldInformationBarrierSegmentMembersManager.swift",
        "Managers/ShieldInformationBarrierSegmentRestrictions/CreateShieldInformationBarrierSegmentRestrictionHeaders.swift",
        "Managers/ShieldInformationBarrierSegmentRestrictions/CreateShieldInformationBarrierSegmentRestrictionRequestBody.swift",
        "Managers/ShieldInformationBarrierSegmentRestrictions/CreateShieldInformationBarrierSegmentRestrictionRequestBodyRestrictedSegmentField.swift",
        "Managers/ShieldInformationBarrierSegmentRestrictions/CreateShieldInformationBarrierSegmentRestrictionRequestBodyRestrictedSegmentTypeField.swift",
        "Managers/ShieldInformationBarrierSegmentRestrictions/CreateShieldInformationBarrierSegmentRestrictionRequestBodyShieldInformationBarrierSegmentField.swift",
        "Managers/ShieldInformationBarrierSegmentRestrictions/CreateShieldInformationBarrierSegmentRestrictionRequestBodyShieldInformationBarrierSegmentTypeField.swift",
        "Managers/ShieldInformationBarrierSegmentRestrictions/CreateShieldInformationBarrierSegmentRestrictionRequestBodyTypeField.swift",
        "Managers/ShieldInformationBarrierSegmentRestrictions/DeleteShieldInformationBarrierSegmentRestrictionByIdHeaders.swift",
        "Managers/ShieldInformationBarrierSegmentRestrictions/GetShieldInformationBarrierSegmentRestrictionByIdHeaders.swift",
        "Managers/ShieldInformationBarrierSegmentRestrictions/GetShieldInformationBarrierSegmentRestrictionsHeaders.swift",
        "Managers/ShieldInformationBarrierSegmentRestrictions/GetShieldInformationBarrierSegmentRestrictionsQueryParams.swift",
        "Managers/ShieldInformationBarrierSegmentRestrictions/ShieldInformationBarrierSegmentRestrictionsManager.swift",
        "Managers/ShieldInformationBarrierSegments/CreateShieldInformationBarrierSegmentHeaders.swift",
        "Managers/ShieldInformationBarrierSegments/CreateShieldInformationBarrierSegmentRequestBody.swift",
        "Managers/ShieldInformationBarrierSegments/DeleteShieldInformationBarrierSegmentByIdHeaders.swift",
        "Managers/ShieldInformationBarrierSegments/GetShieldInformationBarrierSegmentByIdHeaders.swift",
        "Managers/ShieldInformationBarrierSegments/GetShieldInformationBarrierSegmentsHeaders.swift",
        "Managers/ShieldInformationBarrierSegments/GetShieldInformationBarrierSegmentsQueryParams.swift",
        "Managers/ShieldInformationBarrierSegments/ShieldInformationBarrierSegmentsManager.swift",
        "Managers/ShieldInformationBarrierSegments/UpdateShieldInformationBarrierSegmentByIdHeaders.swift",
        "Managers/ShieldInformationBarrierSegments/UpdateShieldInformationBarrierSegmentByIdRequestBody.swift",
        "Managers/ShieldInformationBarriers/CreateShieldInformationBarrierHeaders.swift",
        "Managers/ShieldInformationBarriers/CreateShieldInformationBarrierRequestBody.swift",
        "Managers/ShieldInformationBarriers/GetShieldInformationBarrierByIdHeaders.swift",
        "Managers/ShieldInformationBarriers/GetShieldInformationBarriersHeaders.swift",
        "Managers/ShieldInformationBarriers/GetShieldInformationBarriersQueryParams.swift",
        "Managers/ShieldInformationBarriers/ShieldInformationBarriersManager.swift",
        "Managers/ShieldInformationBarriers/UpdateShieldInformationBarrierStatusHeaders.swift",
        "Managers/ShieldInformationBarriers/UpdateShieldInformationBarrierStatusRequestBody.swift",
        "Managers/ShieldInformationBarriers/UpdateShieldInformationBarrierStatusRequestBodyStatusField.swift",
        "Managers/SignRequests/CancelSignRequestHeaders.swift",
        "Managers/SignRequests/CreateSignRequestHeaders.swift",
        "Managers/SignRequests/GetSignRequestByIdHeaders.swift",
        "Managers/SignRequests/GetSignRequestsHeaders.swift",
        "Managers/SignRequests/GetSignRequestsQueryParams.swift",
        "Managers/SignRequests/ResendSignRequestHeaders.swift",
        "Managers/SignRequests/SignRequestsManager.swift",
        "Managers/SignTemplates/GetSignTemplateByIdHeaders.swift",
        "Managers/SignTemplates/GetSignTemplatesHeaders.swift",
        "Managers/SignTemplates/GetSignTemplatesQueryParams.swift",
        "Managers/SignTemplates/SignTemplatesManager.swift",
        "Managers/Skills/CreateBoxSkillCardsOnFileHeaders.swift",
        "Managers/Skills/CreateBoxSkillCardsOnFileRequestBody.swift",
        "Managers/Skills/DeleteBoxSkillCardsFromFileHeaders.swift",
        "Managers/Skills/GetBoxSkillCardsOnFileHeaders.swift",
        "Managers/Skills/SkillsManager.swift",
        "Managers/Skills/UpdateAllSkillCardsOnFileHeaders.swift",
        "Managers/Skills/UpdateAllSkillCardsOnFileRequestBody.swift",
        "Managers/Skills/UpdateAllSkillCardsOnFileRequestBodyFileField.swift",
        "Managers/Skills/UpdateAllSkillCardsOnFileRequestBodyFileTypeField.swift",
        "Managers/Skills/UpdateAllSkillCardsOnFileRequestBodyFileVersionField.swift",
        "Managers/Skills/UpdateAllSkillCardsOnFileRequestBodyFileVersionTypeField.swift",
        "Managers/Skills/UpdateAllSkillCardsOnFileRequestBodyMetadataField.swift",
        "Managers/Skills/UpdateAllSkillCardsOnFileRequestBodyStatusField.swift",
        "Managers/Skills/UpdateAllSkillCardsOnFileRequestBodyUsageField.swift",
        "Managers/Skills/UpdateBoxSkillCardsOnFileHeaders.swift",
        "Managers/Skills/UpdateBoxSkillCardsOnFileRequestBody.swift",
        "Managers/Skills/UpdateBoxSkillCardsOnFileRequestBodyOpField.swift",
        "Managers/StoragePolicies/GetStoragePoliciesHeaders.swift",
        "Managers/StoragePolicies/GetStoragePoliciesQueryParams.swift",
        "Managers/StoragePolicies/GetStoragePolicyByIdHeaders.swift",
        "Managers/StoragePolicies/StoragePoliciesManager.swift",
        "Managers/StoragePolicyAssignments/CreateStoragePolicyAssignmentHeaders.swift",
        "Managers/StoragePolicyAssignments/CreateStoragePolicyAssignmentRequestBody.swift",
        "Managers/StoragePolicyAssignments/CreateStoragePolicyAssignmentRequestBodyAssignedToField.swift",
        "Managers/StoragePolicyAssignments/CreateStoragePolicyAssignmentRequestBodyAssignedToTypeField.swift",
        "Managers/StoragePolicyAssignments/CreateStoragePolicyAssignmentRequestBodyStoragePolicyField.swift",
        "Managers/StoragePolicyAssignments/CreateStoragePolicyAssignmentRequestBodyStoragePolicyTypeField.swift",
        "Managers/StoragePolicyAssignments/DeleteStoragePolicyAssignmentByIdHeaders.swift",
        "Managers/StoragePolicyAssignments/GetStoragePolicyAssignmentByIdHeaders.swift",
        "Managers/StoragePolicyAssignments/GetStoragePolicyAssignmentsHeaders.swift",
        "Managers/StoragePolicyAssignments/GetStoragePolicyAssignmentsQueryParams.swift",
        "Managers/StoragePolicyAssignments/GetStoragePolicyAssignmentsQueryParamsResolvedForTypeField.swift",
        "Managers/StoragePolicyAssignments/StoragePolicyAssignmentsManager.swift",
        "Managers/StoragePolicyAssignments/UpdateStoragePolicyAssignmentByIdHeaders.swift",
        "Managers/StoragePolicyAssignments/UpdateStoragePolicyAssignmentByIdRequestBody.swift",
        "Managers/StoragePolicyAssignments/UpdateStoragePolicyAssignmentByIdRequestBodyStoragePolicyField.swift",
        "Managers/StoragePolicyAssignments/UpdateStoragePolicyAssignmentByIdRequestBodyStoragePolicyTypeField.swift",
        "Managers/TaskAssignments/CreateTaskAssignmentHeaders.swift",
        "Managers/TaskAssignments/CreateTaskAssignmentRequestBody.swift",
        "Managers/TaskAssignments/CreateTaskAssignmentRequestBodyAssignToField.swift",
        "Managers/TaskAssignments/CreateTaskAssignmentRequestBodyTaskField.swift",
        "Managers/TaskAssignments/CreateTaskAssignmentRequestBodyTaskTypeField.swift",
        "Managers/TaskAssignments/DeleteTaskAssignmentByIdHeaders.swift",
        "Managers/TaskAssignments/GetTaskAssignmentByIdHeaders.swift",
        "Managers/TaskAssignments/GetTaskAssignmentsHeaders.swift",
        "Managers/TaskAssignments/TaskAssignmentsManager.swift",
        "Managers/TaskAssignments/UpdateTaskAssignmentByIdHeaders.swift",
        "Managers/TaskAssignments/UpdateTaskAssignmentByIdRequestBody.swift",
        "Managers/TaskAssignments/UpdateTaskAssignmentByIdRequestBodyResolutionStateField.swift",
        "Managers/Tasks/CreateTaskHeaders.swift",
        "Managers/Tasks/CreateTaskRequestBody.swift",
        "Managers/Tasks/CreateTaskRequestBodyActionField.swift",
        "Managers/Tasks/CreateTaskRequestBodyCompletionRuleField.swift",
        "Managers/Tasks/CreateTaskRequestBodyItemField.swift",
        "Managers/Tasks/CreateTaskRequestBodyItemTypeField.swift",
        "Managers/Tasks/DeleteTaskByIdHeaders.swift",
        "Managers/Tasks/GetFileTasksHeaders.swift",
        "Managers/Tasks/GetTaskByIdHeaders.swift",
        "Managers/Tasks/TasksManager.swift",
        "Managers/Tasks/UpdateTaskByIdHeaders.swift",
        "Managers/Tasks/UpdateTaskByIdRequestBody.swift",
        "Managers/Tasks/UpdateTaskByIdRequestBodyActionField.swift",
        "Managers/Tasks/UpdateTaskByIdRequestBodyCompletionRuleField.swift",
        "Managers/TermsOfServiceUserStatuses/CreateTermsOfServiceStatusForUserHeaders.swift",
        "Managers/TermsOfServiceUserStatuses/CreateTermsOfServiceStatusForUserRequestBody.swift",
        "Managers/TermsOfServiceUserStatuses/CreateTermsOfServiceStatusForUserRequestBodyTosField.swift",
        "Managers/TermsOfServiceUserStatuses/CreateTermsOfServiceStatusForUserRequestBodyTosTypeField.swift",
        "Managers/TermsOfServiceUserStatuses/CreateTermsOfServiceStatusForUserRequestBodyUserField.swift",
        "Managers/TermsOfServiceUserStatuses/CreateTermsOfServiceStatusForUserRequestBodyUserTypeField.swift",
        "Managers/TermsOfServiceUserStatuses/GetTermsOfServiceUserStatusesHeaders.swift",
        "Managers/TermsOfServiceUserStatuses/GetTermsOfServiceUserStatusesQueryParams.swift",
        "Managers/TermsOfServiceUserStatuses/TermsOfServiceUserStatusesManager.swift",
        "Managers/TermsOfServiceUserStatuses/UpdateTermsOfServiceStatusForUserByIdHeaders.swift",
        "Managers/TermsOfServiceUserStatuses/UpdateTermsOfServiceStatusForUserByIdRequestBody.swift",
        "Managers/TermsOfServices/CreateTermsOfServiceHeaders.swift",
        "Managers/TermsOfServices/CreateTermsOfServiceRequestBody.swift",
        "Managers/TermsOfServices/CreateTermsOfServiceRequestBodyStatusField.swift",
        "Managers/TermsOfServices/CreateTermsOfServiceRequestBodyTosTypeField.swift",
        "Managers/TermsOfServices/GetTermsOfServiceByIdHeaders.swift",
        "Managers/TermsOfServices/GetTermsOfServiceHeaders.swift",
        "Managers/TermsOfServices/GetTermsOfServiceQueryParams.swift",
        "Managers/TermsOfServices/GetTermsOfServiceQueryParamsTosTypeField.swift",
        "Managers/TermsOfServices/TermsOfServicesManager.swift",
        "Managers/TermsOfServices/UpdateTermsOfServiceByIdHeaders.swift",
        "Managers/TermsOfServices/UpdateTermsOfServiceByIdRequestBody.swift",
        "Managers/TermsOfServices/UpdateTermsOfServiceByIdRequestBodyStatusField.swift",
        "Managers/Transfer/TransferManager.swift",
        "Managers/Transfer/TransferOwnedFolderHeaders.swift",
        "Managers/Transfer/TransferOwnedFolderQueryParams.swift",
        "Managers/Transfer/TransferOwnedFolderRequestBody.swift",
        "Managers/Transfer/TransferOwnedFolderRequestBodyOwnedByField.swift",
        "Managers/TrashedFiles/DeleteTrashedFileByIdHeaders.swift",
        "Managers/TrashedFiles/GetTrashedFileByIdHeaders.swift",
        "Managers/TrashedFiles/GetTrashedFileByIdQueryParams.swift",
        "Managers/TrashedFiles/RestoreFileFromTrashHeaders.swift",
        "Managers/TrashedFiles/RestoreFileFromTrashQueryParams.swift",
        "Managers/TrashedFiles/RestoreFileFromTrashRequestBody.swift",
        "Managers/TrashedFiles/RestoreFileFromTrashRequestBodyParentField.swift",
        "Managers/TrashedFiles/TrashedFilesManager.swift",
        "Managers/TrashedFolders/DeleteTrashedFolderByIdHeaders.swift",
        "Managers/TrashedFolders/GetTrashedFolderByIdHeaders.swift",
        "Managers/TrashedFolders/GetTrashedFolderByIdQueryParams.swift",
        "Managers/TrashedFolders/RestoreFolderFromTrashHeaders.swift",
        "Managers/TrashedFolders/RestoreFolderFromTrashQueryParams.swift",
        "Managers/TrashedFolders/RestoreFolderFromTrashRequestBody.swift",
        "Managers/TrashedFolders/RestoreFolderFromTrashRequestBodyParentField.swift",
        "Managers/TrashedFolders/TrashedFoldersManager.swift",
        "Managers/TrashedItems/GetTrashedItemsHeaders.swift",
        "Managers/TrashedItems/GetTrashedItemsQueryParams.swift",
        "Managers/TrashedItems/GetTrashedItemsQueryParamsDirectionField.swift",
        "Managers/TrashedItems/GetTrashedItemsQueryParamsSortField.swift",
        "Managers/TrashedItems/TrashedItemsManager.swift",
        "Managers/TrashedWebLinks/DeleteTrashedWebLinkByIdHeaders.swift",
        "Managers/TrashedWebLinks/GetTrashedWebLinkByIdHeaders.swift",
        "Managers/TrashedWebLinks/GetTrashedWebLinkByIdQueryParams.swift",
        "Managers/TrashedWebLinks/RestoreWeblinkFromTrashHeaders.swift",
        "Managers/TrashedWebLinks/RestoreWeblinkFromTrashQueryParams.swift",
        "Managers/TrashedWebLinks/RestoreWeblinkFromTrashRequestBody.swift",
        "Managers/TrashedWebLinks/RestoreWeblinkFromTrashRequestBodyParentField.swift",
        "Managers/TrashedWebLinks/TrashedWebLinksManager.swift",
        "Managers/Uploads/PreflightFileUploadCheckHeaders.swift",
        "Managers/Uploads/PreflightFileUploadCheckRequestBody.swift",
        "Managers/Uploads/PreflightFileUploadCheckRequestBodyParentField.swift",
        "Managers/Uploads/UploadFileHeaders.swift",
        "Managers/Uploads/UploadFileQueryParams.swift",
        "Managers/Uploads/UploadFileRequestBody.swift",
        "Managers/Uploads/UploadFileRequestBodyAttributesField.swift",
        "Managers/Uploads/UploadFileRequestBodyAttributesParentField.swift",
        "Managers/Uploads/UploadFileVersionHeaders.swift",
        "Managers/Uploads/UploadFileVersionQueryParams.swift",
        "Managers/Uploads/UploadFileVersionRequestBody.swift",
        "Managers/Uploads/UploadFileVersionRequestBodyAttributesField.swift",
        "Managers/Uploads/UploadsManager.swift",
        "Managers/UserCollaborations/CreateCollaborationHeaders.swift",
        "Managers/UserCollaborations/CreateCollaborationQueryParams.swift",
        "Managers/UserCollaborations/CreateCollaborationRequestBody.swift",
        "Managers/UserCollaborations/CreateCollaborationRequestBodyAccessibleByField.swift",
        "Managers/UserCollaborations/CreateCollaborationRequestBodyAccessibleByTypeField.swift",
        "Managers/UserCollaborations/CreateCollaborationRequestBodyItemField.swift",
        "Managers/UserCollaborations/CreateCollaborationRequestBodyItemTypeField.swift",
        "Managers/UserCollaborations/CreateCollaborationRequestBodyRoleField.swift",
        "Managers/UserCollaborations/DeleteCollaborationByIdHeaders.swift",
        "Managers/UserCollaborations/GetCollaborationByIdHeaders.swift",
        "Managers/UserCollaborations/GetCollaborationByIdQueryParams.swift",
        "Managers/UserCollaborations/UpdateCollaborationByIdHeaders.swift",
        "Managers/UserCollaborations/UpdateCollaborationByIdRequestBody.swift",
        "Managers/UserCollaborations/UpdateCollaborationByIdRequestBodyRoleField.swift",
        "Managers/UserCollaborations/UpdateCollaborationByIdRequestBodyStatusField.swift",
        "Managers/UserCollaborations/UserCollaborationsManager.swift",
        "Managers/Users/CreateUserHeaders.swift",
        "Managers/Users/CreateUserQueryParams.swift",
        "Managers/Users/CreateUserRequestBody.swift",
        "Managers/Users/CreateUserRequestBodyRoleField.swift",
        "Managers/Users/CreateUserRequestBodyStatusField.swift",
        "Managers/Users/DeleteUserByIdHeaders.swift",
        "Managers/Users/DeleteUserByIdQueryParams.swift",
        "Managers/Users/GetUserByIdHeaders.swift",
        "Managers/Users/GetUserByIdQueryParams.swift",
        "Managers/Users/GetUserMeHeaders.swift",
        "Managers/Users/GetUserMeQueryParams.swift",
        "Managers/Users/GetUsersHeaders.swift",
        "Managers/Users/GetUsersQueryParams.swift",
        "Managers/Users/GetUsersQueryParamsUserTypeField.swift",
        "Managers/Users/UpdateUserByIdHeaders.swift",
        "Managers/Users/UpdateUserByIdQueryParams.swift",
        "Managers/Users/UpdateUserByIdRequestBody.swift",
        "Managers/Users/UpdateUserByIdRequestBodyNotificationEmailField.swift",
        "Managers/Users/UpdateUserByIdRequestBodyRoleField.swift",
        "Managers/Users/UpdateUserByIdRequestBodyStatusField.swift",
        "Managers/Users/UsersManager.swift",
        "Managers/WebLinks/CreateWebLinkHeaders.swift",
        "Managers/WebLinks/CreateWebLinkRequestBody.swift",
        "Managers/WebLinks/CreateWebLinkRequestBodyParentField.swift",
        "Managers/WebLinks/DeleteWebLinkByIdHeaders.swift",
        "Managers/WebLinks/GetWebLinkByIdHeaders.swift",
        "Managers/WebLinks/UpdateWebLinkByIdHeaders.swift",
        "Managers/WebLinks/UpdateWebLinkByIdRequestBody.swift",
        "Managers/WebLinks/UpdateWebLinkByIdRequestBodyParentField.swift",
        "Managers/WebLinks/UpdateWebLinkByIdRequestBodySharedLinkAccessField.swift",
        "Managers/WebLinks/UpdateWebLinkByIdRequestBodySharedLinkField.swift",
        "Managers/WebLinks/WebLinksManager.swift",
        "Managers/Webhooks/CreateWebhookHeaders.swift",
        "Managers/Webhooks/CreateWebhookRequestBody.swift",
        "Managers/Webhooks/CreateWebhookRequestBodyTargetField.swift",
        "Managers/Webhooks/CreateWebhookRequestBodyTargetTypeField.swift",
        "Managers/Webhooks/CreateWebhookRequestBodyTriggersField.swift",
        "Managers/Webhooks/DeleteWebhookByIdHeaders.swift",
        "Managers/Webhooks/GetWebhookByIdHeaders.swift",
        "Managers/Webhooks/GetWebhooksHeaders.swift",
        "Managers/Webhooks/GetWebhooksQueryParams.swift",
        "Managers/Webhooks/UpdateWebhookByIdHeaders.swift",
        "Managers/Webhooks/UpdateWebhookByIdRequestBody.swift",
        "Managers/Webhooks/UpdateWebhookByIdRequestBodyTargetField.swift",
        "Managers/Webhooks/UpdateWebhookByIdRequestBodyTargetTypeField.swift",
        "Managers/Webhooks/UpdateWebhookByIdRequestBodyTriggersField.swift",
        "Managers/Webhooks/WebhooksManager.swift",
        "Managers/Workflows/GetWorkflowsHeaders.swift",
        "Managers/Workflows/GetWorkflowsQueryParams.swift",
        "Managers/Workflows/StartWorkflowHeaders.swift",
        "Managers/Workflows/StartWorkflowRequestBody.swift",
        "Managers/Workflows/StartWorkflowRequestBodyFilesField.swift",
        "Managers/Workflows/StartWorkflowRequestBodyFilesTypeField.swift",
        "Managers/Workflows/StartWorkflowRequestBodyFlowField.swift",
        "Managers/Workflows/StartWorkflowRequestBodyFolderField.swift",
        "Managers/Workflows/StartWorkflowRequestBodyFolderTypeField.swift",
        "Managers/Workflows/StartWorkflowRequestBodyTypeField.swift",
        "Managers/Workflows/WorkflowsManager.swift",
        "Managers/ZipDownloads/CreateZipDownloadHeaders.swift",
        "Managers/ZipDownloads/GetZipDownloadContentHeaders.swift",
        "Managers/ZipDownloads/GetZipDownloadStatusHeaders.swift",
        "Managers/ZipDownloads/ZipDownloadsManager.swift",
        "Networking/Auth/Authentication.swift",
        "Networking/BaseUrls/BaseUrls.swift",
        "Networking/BoxConstants.swift",
        "Networking/FetchConversation.swift",
        "Networking/FetchOptions.swift",
        "Networking/FetchResponse.swift",
        "Networking/MultipartItem.swift",
        "Networking/NetworkClient.swift",
        "Networking/NetworkSession.swift",
        "Networking/NetworkSettings.swift",
        "Networking/ParameterConvertible.swift",
        "Networking/RetryStrategyProtocol.swift",
        "Networking/Version.swift",
        "Schemas/AccessToken/AccessToken.swift",
        "Schemas/AccessToken/AccessTokenIssuedTokenTypeField.swift",
        "Schemas/AccessToken/AccessTokenTokenTypeField.swift",
        "Schemas/AiAgentAsk/AiAgentAsk.swift",
        "Schemas/AiAgentAsk/AiAgentAskTypeField.swift",
        "Schemas/AiAgentAskOrAiAgentExtractOrAiAgentExtractStructuredOrAiAgentTextGen/AiAgentAskOrAiAgentExtractOrAiAgentExtractStructuredOrAiAgentTextGen.swift",
        "Schemas/AiAgentBasicGenTool/AiAgentBasicGenTool.swift",
        "Schemas/AiAgentBasicTextTool/AiAgentBasicTextTool.swift",
        "Schemas/AiAgentBasicTextToolBase/AiAgentBasicTextToolBase.swift",
        "Schemas/AiAgentBasicTextToolTextGen/AiAgentBasicTextToolTextGen.swift",
        "Schemas/AiAgentExtract/AiAgentExtract.swift",
        "Schemas/AiAgentExtract/AiAgentExtractTypeField.swift",
        "Schemas/AiAgentExtractStructured/AiAgentExtractStructured.swift",
        "Schemas/AiAgentExtractStructured/AiAgentExtractStructuredTypeField.swift",
        "Schemas/AiAgentLongTextTool/AiAgentLongTextTool.swift",
        "Schemas/AiAgentLongTextTool/AiAgentLongTextToolEmbeddingsField.swift",
        "Schemas/AiAgentLongTextTool/AiAgentLongTextToolEmbeddingsStrategyField.swift",
        "Schemas/AiAgentLongTextToolTextGen/AiAgentLongTextToolTextGen.swift",
        "Schemas/AiAgentLongTextToolTextGen/AiAgentLongTextToolTextGenEmbeddingsField.swift",
        "Schemas/AiAgentLongTextToolTextGen/AiAgentLongTextToolTextGenEmbeddingsStrategyField.swift",
        "Schemas/AiAgentTextGen/AiAgentTextGen.swift",
        "Schemas/AiAgentTextGen/AiAgentTextGenTypeField.swift",
        "Schemas/AiAsk/AiAsk.swift",
        "Schemas/AiAsk/AiAskModeField.swift",
        "Schemas/AiCitation/AiCitation.swift",
        "Schemas/AiCitation/AiCitationTypeField.swift",
        "Schemas/AiDialogueHistory/AiDialogueHistory.swift",
        "Schemas/AiExtract/AiExtract.swift",
        "Schemas/AiExtractResponse/AiExtractResponse.swift",
        "Schemas/AiExtractStructured/AiExtractStructured.swift",
        "Schemas/AiExtractStructured/AiExtractStructuredFieldsField.swift",
        "Schemas/AiExtractStructured/AiExtractStructuredFieldsOptionsField.swift",
        "Schemas/AiExtractStructured/AiExtractStructuredMetadataTemplateField.swift",
        "Schemas/AiExtractStructured/AiExtractStructuredMetadataTemplateTypeField.swift",
        "Schemas/AiItemBase/AiItemBase.swift",
        "Schemas/AiItemBase/AiItemBaseTypeField.swift",
        "Schemas/AiLlmEndpointParamsGoogle/AiLlmEndpointParamsGoogle.swift",
        "Schemas/AiLlmEndpointParamsGoogle/AiLlmEndpointParamsGoogleTypeField.swift",
        "Schemas/AiLlmEndpointParamsGoogleOrAiLlmEndpointParamsOpenAi/AiLlmEndpointParamsGoogleOrAiLlmEndpointParamsOpenAi.swift",
        "Schemas/AiLlmEndpointParamsOpenAi/AiLlmEndpointParamsOpenAi.swift",
        "Schemas/AiLlmEndpointParamsOpenAi/AiLlmEndpointParamsOpenAiTypeField.swift",
        "Schemas/AiResponse/AiResponse.swift",
        "Schemas/AiResponseFull/AiResponseFull.swift",
        "Schemas/AiTextGen/AiTextGen.swift",
        "Schemas/AiTextGen/AiTextGenItemsField.swift",
        "Schemas/AiTextGen/AiTextGenItemsTypeField.swift",
        "Schemas/AppItem/AppItem.swift",
        "Schemas/AppItem/AppItemTypeField.swift",
        "Schemas/AppItemAssociation/AppItemAssociation.swift",
        "Schemas/AppItemAssociation/AppItemAssociationTypeField.swift",
        "Schemas/AppItemAssociations/AppItemAssociations.swift",
        "Schemas/AppItemEventSource/AppItemEventSource.swift",
        "Schemas/AppItemEventSource/AppItemEventSourceTypeField.swift",
        "Schemas/AppItemEventSourceOrEventSourceOrFileOrFolderOrGenericSourceOrUser/AppItemEventSourceOrEventSourceOrFileOrFolderOrGenericSourceOrUser.swift",
        "Schemas/Classification/Classification.swift",
        "Schemas/Classification/ClassificationTemplateField.swift",
        "Schemas/ClassificationTemplate/ClassificationTemplate.swift",
        "Schemas/ClassificationTemplate/ClassificationTemplateDisplayNameField.swift",
        "Schemas/ClassificationTemplate/ClassificationTemplateFieldsDisplayNameField.swift",
        "Schemas/ClassificationTemplate/ClassificationTemplateFieldsField.swift",
        "Schemas/ClassificationTemplate/ClassificationTemplateFieldsKeyField.swift",
        "Schemas/ClassificationTemplate/ClassificationTemplateFieldsOptionsField.swift",
        "Schemas/ClassificationTemplate/ClassificationTemplateFieldsOptionsStaticConfigClassificationField.swift",
        "Schemas/ClassificationTemplate/ClassificationTemplateFieldsOptionsStaticConfigField.swift",
        "Schemas/ClassificationTemplate/ClassificationTemplateFieldsTypeField.swift",
        "Schemas/ClassificationTemplate/ClassificationTemplateTemplateKeyField.swift",
        "Schemas/ClassificationTemplate/ClassificationTemplateTypeField.swift",
        "Schemas/ClientError/ClientError.swift",
        "Schemas/ClientError/ClientErrorCodeField.swift",
        "Schemas/ClientError/ClientErrorContextInfoField.swift",
        "Schemas/ClientError/ClientErrorTypeField.swift",
        "Schemas/Collaboration/Collaboration.swift",
        "Schemas/Collaboration/CollaborationAcceptanceRequirementsStatusField.swift",
        "Schemas/Collaboration/CollaborationAcceptanceRequirementsStatusStrongPasswordRequirementField.swift",
        "Schemas/Collaboration/CollaborationAcceptanceRequirementsStatusTermsOfServiceRequirementField.swift",
        "Schemas/Collaboration/CollaborationAcceptanceRequirementsStatusTwoFactorAuthenticationRequirementField.swift",
        "Schemas/Collaboration/CollaborationRoleField.swift",
        "Schemas/Collaboration/CollaborationStatusField.swift",
        "Schemas/Collaboration/CollaborationTypeField.swift",
        "Schemas/CollaborationAllowlistEntries/CollaborationAllowlistEntries.swift",
        "Schemas/CollaborationAllowlistEntry/CollaborationAllowlistEntry.swift",
        "Schemas/CollaborationAllowlistEntry/CollaborationAllowlistEntryDirectionField.swift",
        "Schemas/CollaborationAllowlistEntry/CollaborationAllowlistEntryEnterpriseField.swift",
        "Schemas/CollaborationAllowlistEntry/CollaborationAllowlistEntryEnterpriseTypeField.swift",
        "Schemas/CollaborationAllowlistEntry/CollaborationAllowlistEntryTypeField.swift",
        "Schemas/CollaborationAllowlistExemptTarget/CollaborationAllowlistExemptTarget.swift",
        "Schemas/CollaborationAllowlistExemptTarget/CollaborationAllowlistExemptTargetEnterpriseField.swift",
        "Schemas/CollaborationAllowlistExemptTarget/CollaborationAllowlistExemptTargetEnterpriseTypeField.swift",
        "Schemas/CollaborationAllowlistExemptTarget/CollaborationAllowlistExemptTargetTypeField.swift",
        "Schemas/CollaborationAllowlistExemptTargets/CollaborationAllowlistExemptTargets.swift",
        "Schemas/Collaborations/Collaborations.swift",
        "Schemas/Collaborations/CollaborationsOrderDirectionField.swift",
        "Schemas/Collaborations/CollaborationsOrderField.swift",
        "Schemas/CollaboratorVariable/CollaboratorVariable.swift",
        "Schemas/CollaboratorVariable/CollaboratorVariableTypeField.swift",
        "Schemas/CollaboratorVariable/CollaboratorVariableVariableTypeField.swift",
        "Schemas/CollaboratorVariable/CollaboratorVariableVariableValueField.swift",
        "Schemas/CollaboratorVariable/CollaboratorVariableVariableValueTypeField.swift",
        "Schemas/Collection/Collection.swift",
        "Schemas/Collection/CollectionCollectionTypeField.swift",
        "Schemas/Collection/CollectionNameField.swift",
        "Schemas/Collection/CollectionTypeField.swift",
        "Schemas/Collections/Collections.swift",
        "Schemas/Collections/CollectionsOrderDirectionField.swift",
        "Schemas/Collections/CollectionsOrderField.swift",
        "Schemas/Comment/Comment.swift",
        "Schemas/Comment/CommentItemField.swift",
        "Schemas/CommentBase/CommentBase.swift",
        "Schemas/CommentBase/CommentBaseTypeField.swift",
        "Schemas/CommentFull/CommentFull.swift",
        "Schemas/Comments/Comments.swift",
        "Schemas/Comments/CommentsOrderDirectionField.swift",
        "Schemas/Comments/CommentsOrderField.swift",
        "Schemas/CompletionRuleVariable/CompletionRuleVariable.swift",
        "Schemas/CompletionRuleVariable/CompletionRuleVariableTypeField.swift",
        "Schemas/CompletionRuleVariable/CompletionRuleVariableVariableTypeField.swift",
        "Schemas/CompletionRuleVariable/CompletionRuleVariableVariableValueField.swift",
        "Schemas/ConflictError/ConflictError.swift",
        "Schemas/ConflictError/ConflictErrorContextInfoField.swift",
        "Schemas/DevicePinner/DevicePinner.swift",
        "Schemas/DevicePinner/DevicePinnerTypeField.swift",
        "Schemas/DevicePinners/DevicePinners.swift",
        "Schemas/DevicePinners/DevicePinnersOrderByField.swift",
        "Schemas/DevicePinners/DevicePinnersOrderDirectionField.swift",
        "Schemas/DevicePinners/DevicePinnersOrderField.swift",
        "Schemas/EmailAlias/EmailAlias.swift",
        "Schemas/EmailAlias/EmailAliasTypeField.swift",
        "Schemas/EmailAliases/EmailAliases.swift",
        "Schemas/EnterpriseBase/EnterpriseBase.swift",
        "Schemas/EnterpriseBase/EnterpriseBaseTypeField.swift",
        "Schemas/Event/Event.swift",
        "Schemas/Event/EventAdditionalDetailsField.swift",
        "Schemas/Event/EventEventTypeField.swift",
        "Schemas/EventSource/EventSource.swift",
        "Schemas/EventSource/EventSourceClassificationField.swift",
        "Schemas/EventSource/EventSourceItemTypeField.swift",
        "Schemas/Events/Events.swift",
        "Schemas/Events/EventsNextStreamPositionField.swift",
        "Schemas/File/File.swift",
        "Schemas/File/FileItemStatusField.swift",
        "Schemas/File/FilePathCollectionField.swift",
        "Schemas/File/FileSharedLinkAccessField.swift",
        "Schemas/File/FileSharedLinkEffectiveAccessField.swift",
        "Schemas/File/FileSharedLinkEffectivePermissionField.swift",
        "Schemas/File/FileSharedLinkField.swift",
        "Schemas/File/FileSharedLinkPermissionsField.swift",
        "Schemas/FileBase/FileBase.swift",
        "Schemas/FileBase/FileBaseTypeField.swift",
        "Schemas/FileBaseOrFolderBaseOrWebLinkBase/FileBaseOrFolderBaseOrWebLinkBase.swift",
        "Schemas/FileConflict/FileConflict.swift",
        "Schemas/FileFull/FileFull.swift",
        "Schemas/FileFull/FileFullAllowedInviteeRolesField.swift",
        "Schemas/FileFull/FileFullClassificationField.swift",
        "Schemas/FileFull/FileFullExpiringEmbedLinkField.swift",
        "Schemas/FileFull/FileFullExpiringEmbedLinkTokenTypeField.swift",
        "Schemas/FileFull/FileFullLockAppTypeField.swift",
        "Schemas/FileFull/FileFullLockField.swift",
        "Schemas/FileFull/FileFullLockTypeField.swift",
        "Schemas/FileFull/FileFullMetadataField.swift",
        "Schemas/FileFull/FileFullPermissionsField.swift",
        "Schemas/FileFull/FileFullRepresentationsEntriesContentField.swift",
        "Schemas/FileFull/FileFullRepresentationsEntriesField.swift",
        "Schemas/FileFull/FileFullRepresentationsEntriesInfoField.swift",
        "Schemas/FileFull/FileFullRepresentationsEntriesPropertiesField.swift",
        "Schemas/FileFull/FileFullRepresentationsEntriesStatusField.swift",
        "Schemas/FileFull/FileFullRepresentationsEntriesStatusStateField.swift",
        "Schemas/FileFull/FileFullRepresentationsField.swift",
        "Schemas/FileFull/FileFullSharedLinkPermissionOptionsField.swift",
        "Schemas/FileFull/FileFullWatermarkInfoField.swift",
        "Schemas/FileFullOrFolderFull/FileFullOrFolderFull.swift",
        "Schemas/FileFullOrFolderFullOrWebLink/FileFullOrFolderFullOrWebLink.swift",
        "Schemas/FileFullOrFolderMiniOrWebLink/FileFullOrFolderMiniOrWebLink.swift",
        "Schemas/FileMini/FileMini.swift",
        "Schemas/FileMiniOrFolderMini/FileMiniOrFolderMini.swift",
        "Schemas/FileOrFolder/FileOrFolder.swift",
        "Schemas/FileOrFolderOrWebLink/FileOrFolderOrWebLink.swift",
        "Schemas/FileOrFolderScope/FileOrFolderScope.swift",
        "Schemas/FileOrFolderScope/FileOrFolderScopeScopeField.swift",
        "Schemas/FileRequest/FileRequest.swift",
        "Schemas/FileRequest/FileRequestStatusField.swift",
        "Schemas/FileRequest/FileRequestTypeField.swift",
        "Schemas/FileRequestCopyRequest/FileRequestCopyRequest.swift",
        "Schemas/FileRequestCopyRequest/FileRequestCopyRequestFolderField.swift",
        "Schemas/FileRequestCopyRequest/FileRequestCopyRequestFolderTypeField.swift",
        "Schemas/FileRequestUpdateRequest/FileRequestUpdateRequest.swift",
        "Schemas/FileRequestUpdateRequest/FileRequestUpdateRequestStatusField.swift",
        "Schemas/FileVersion/FileVersion.swift",
        "Schemas/FileVersionBase/FileVersionBase.swift",
        "Schemas/FileVersionBase/FileVersionBaseTypeField.swift",
        "Schemas/FileVersionFull/FileVersionFull.swift",
        "Schemas/FileVersionLegalHold/FileVersionLegalHold.swift",
        "Schemas/FileVersionLegalHold/FileVersionLegalHoldTypeField.swift",
        "Schemas/FileVersionLegalHolds/FileVersionLegalHolds.swift",
        "Schemas/FileVersionMini/FileVersionMini.swift",
        "Schemas/FileVersionRetention/FileVersionRetention.swift",
        "Schemas/FileVersionRetention/FileVersionRetentionTypeField.swift",
        "Schemas/FileVersionRetentions/FileVersionRetentions.swift",
        "Schemas/FileVersions/FileVersions.swift",
        "Schemas/FileVersions/FileVersionsOrderDirectionField.swift",
        "Schemas/FileVersions/FileVersionsOrderField.swift",
        "Schemas/Files/Files.swift",
        "Schemas/FilesOnHold/FilesOnHold.swift",
        "Schemas/FilesUnderRetention/FilesUnderRetention.swift",
        "Schemas/Folder/Folder.swift",
        "Schemas/Folder/FolderFolderUploadEmailAccessField.swift",
        "Schemas/Folder/FolderFolderUploadEmailField.swift",
        "Schemas/Folder/FolderItemStatusField.swift",
        "Schemas/Folder/FolderPathCollectionField.swift",
        "Schemas/Folder/FolderSharedLinkAccessField.swift",
        "Schemas/Folder/FolderSharedLinkEffectiveAccessField.swift",
        "Schemas/Folder/FolderSharedLinkEffectivePermissionField.swift",
        "Schemas/Folder/FolderSharedLinkField.swift",
        "Schemas/Folder/FolderSharedLinkPermissionsField.swift",
        "Schemas/FolderBase/FolderBase.swift",
        "Schemas/FolderBase/FolderBaseTypeField.swift",
        "Schemas/FolderFull/FolderFull.swift",
        "Schemas/FolderFull/FolderFullAllowedInviteeRolesField.swift",
        "Schemas/FolderFull/FolderFullAllowedSharedLinkAccessLevelsField.swift",
        "Schemas/FolderFull/FolderFullClassificationField.swift",
        "Schemas/FolderFull/FolderFullMetadataField.swift",
        "Schemas/FolderFull/FolderFullPermissionsField.swift",
        "Schemas/FolderFull/FolderFullSyncStateField.swift",
        "Schemas/FolderFull/FolderFullWatermarkInfoField.swift",
        "Schemas/FolderLock/FolderLock.swift",
        "Schemas/FolderLock/FolderLockLockedOperationsField.swift",
        "Schemas/FolderLocks/FolderLocks.swift",
        "Schemas/FolderMini/FolderMini.swift",
        "Schemas/GenericSource/GenericSource.swift",
        "Schemas/Group/Group.swift",
        "Schemas/GroupBase/GroupBase.swift",
        "Schemas/GroupBase/GroupBaseTypeField.swift",
        "Schemas/GroupFull/GroupFull.swift",
        "Schemas/GroupFull/GroupFullInvitabilityLevelField.swift",
        "Schemas/GroupFull/GroupFullMemberViewabilityLevelField.swift",
        "Schemas/GroupFull/GroupFullPermissionsField.swift",
        "Schemas/GroupMembership/GroupMembership.swift",
        "Schemas/GroupMembership/GroupMembershipRoleField.swift",
        "Schemas/GroupMembership/GroupMembershipTypeField.swift",
        "Schemas/GroupMemberships/GroupMemberships.swift",
        "Schemas/GroupMemberships/GroupMembershipsOrderDirectionField.swift",
        "Schemas/GroupMemberships/GroupMembershipsOrderField.swift",
        "Schemas/GroupMini/GroupMini.swift",
        "Schemas/GroupMini/GroupMiniGroupTypeField.swift",
        "Schemas/GroupMiniOrUserCollaborations/GroupMiniOrUserCollaborations.swift",
        "Schemas/Groups/Groups.swift",
        "Schemas/Groups/GroupsOrderDirectionField.swift",
        "Schemas/Groups/GroupsOrderField.swift",
        "Schemas/IntegrationMapping/IntegrationMapping.swift",
        "Schemas/IntegrationMapping/IntegrationMappingIntegrationTypeField.swift",
        "Schemas/IntegrationMappingBase/IntegrationMappingBase.swift",
        "Schemas/IntegrationMappingBase/IntegrationMappingBaseTypeField.swift",
        "Schemas/IntegrationMappingBoxItemSlack/IntegrationMappingBoxItemSlack.swift",
        "Schemas/IntegrationMappingBoxItemSlack/IntegrationMappingBoxItemSlackTypeField.swift",
        "Schemas/IntegrationMappingPartnerItemSlack/IntegrationMappingPartnerItemSlack.swift",
        "Schemas/IntegrationMappingPartnerItemSlack/IntegrationMappingPartnerItemSlackTypeField.swift",
        "Schemas/IntegrationMappingPartnerItemSlackUnion/IntegrationMappingPartnerItemSlackUnion.swift",
        "Schemas/IntegrationMappingSlackCreateRequest/IntegrationMappingSlackCreateRequest.swift",
        "Schemas/IntegrationMappingSlackOptions/IntegrationMappingSlackOptions.swift",
        "Schemas/IntegrationMappings/IntegrationMappings.swift",
        "Schemas/Invite/Invite.swift",
        "Schemas/Invite/InviteInvitedToField.swift",
        "Schemas/Invite/InviteInvitedToTypeField.swift",
        "Schemas/Invite/InviteTypeField.swift",
        "Schemas/Items/Items.swift",
        "Schemas/Items/ItemsOrderDirectionField.swift",
        "Schemas/Items/ItemsOrderField.swift",
        "Schemas/KeywordSkillCard/KeywordSkillCard.swift",
        "Schemas/KeywordSkillCard/KeywordSkillCardEntriesField.swift",
        "Schemas/KeywordSkillCard/KeywordSkillCardInvocationField.swift",
        "Schemas/KeywordSkillCard/KeywordSkillCardInvocationTypeField.swift",
        "Schemas/KeywordSkillCard/KeywordSkillCardSkillCardTitleField.swift",
        "Schemas/KeywordSkillCard/KeywordSkillCardSkillCardTypeField.swift",
        "Schemas/KeywordSkillCard/KeywordSkillCardSkillField.swift",
        "Schemas/KeywordSkillCard/KeywordSkillCardSkillTypeField.swift",
        "Schemas/KeywordSkillCard/KeywordSkillCardTypeField.swift",
        "Schemas/KeywordSkillCardOrStatusSkillCardOrTimelineSkillCardOrTranscriptSkillCard/KeywordSkillCardOrStatusSkillCardOrTimelineSkillCardOrTranscriptSkillCard.swift",
        "Schemas/LegalHoldPolicies/LegalHoldPolicies.swift",
        "Schemas/LegalHoldPolicy/LegalHoldPolicy.swift",
        "Schemas/LegalHoldPolicy/LegalHoldPolicyAssignmentCountsField.swift",
        "Schemas/LegalHoldPolicy/LegalHoldPolicyStatusField.swift",
        "Schemas/LegalHoldPolicyAssignment/LegalHoldPolicyAssignment.swift",
        "Schemas/LegalHoldPolicyAssignmentBase/LegalHoldPolicyAssignmentBase.swift",
        "Schemas/LegalHoldPolicyAssignmentBase/LegalHoldPolicyAssignmentBaseTypeField.swift",
        "Schemas/LegalHoldPolicyAssignments/LegalHoldPolicyAssignments.swift",
        "Schemas/LegalHoldPolicyMini/LegalHoldPolicyMini.swift",
        "Schemas/LegalHoldPolicyMini/LegalHoldPolicyMiniTypeField.swift",
        "Schemas/Metadata/Metadata.swift",
        "Schemas/MetadataBase/MetadataBase.swift",
        "Schemas/MetadataCascadePolicies/MetadataCascadePolicies.swift",
        "Schemas/MetadataCascadePolicy/MetadataCascadePolicy.swift",
        "Schemas/MetadataCascadePolicy/MetadataCascadePolicyOwnerEnterpriseField.swift",
        "Schemas/MetadataCascadePolicy/MetadataCascadePolicyOwnerEnterpriseTypeField.swift",
        "Schemas/MetadataCascadePolicy/MetadataCascadePolicyParentField.swift",
        "Schemas/MetadataCascadePolicy/MetadataCascadePolicyParentTypeField.swift",
        "Schemas/MetadataCascadePolicy/MetadataCascadePolicyTypeField.swift",
        "Schemas/MetadataFieldFilterDateRange/MetadataFieldFilterDateRange.swift",
        "Schemas/MetadataFieldFilterDateRangeOrMetadataFieldFilterFloatRangeOrArrayOfStringOrNumberOrString/MetadataFieldFilterDateRangeOrMetadataFieldFilterFloatRangeOrArrayOfStringOrNumberOrString.swift",
        "Schemas/MetadataFieldFilterFloatRange/MetadataFieldFilterFloatRange.swift",
        "Schemas/MetadataFilter/MetadataFilter.swift",
        "Schemas/MetadataFilter/MetadataFilterScopeField.swift",
        "Schemas/MetadataFull/MetadataFull.swift",
        "Schemas/MetadataQuery/MetadataQuery.swift",
        "Schemas/MetadataQuery/MetadataQueryOrderByDirectionField.swift",
        "Schemas/MetadataQuery/MetadataQueryOrderByField.swift",
        "Schemas/MetadataQueryIndex/MetadataQueryIndex.swift",
        "Schemas/MetadataQueryIndex/MetadataQueryIndexFieldsField.swift",
        "Schemas/MetadataQueryIndex/MetadataQueryIndexFieldsSortDirectionField.swift",
        "Schemas/MetadataQueryIndex/MetadataQueryIndexStatusField.swift",
        "Schemas/MetadataQueryResults/MetadataQueryResults.swift",
        "Schemas/MetadataTemplate/MetadataTemplate.swift",
        "Schemas/MetadataTemplate/MetadataTemplateFieldsField.swift",
        "Schemas/MetadataTemplate/MetadataTemplateFieldsOptionsField.swift",
        "Schemas/MetadataTemplate/MetadataTemplateFieldsTypeField.swift",
        "Schemas/MetadataTemplate/MetadataTemplateTypeField.swift",
        "Schemas/MetadataTemplates/MetadataTemplates.swift",
        "Schemas/Metadatas/Metadatas.swift",
        "Schemas/OAuth2Error/OAuth2Error.swift",
        "Schemas/Outcome/Outcome.swift",
        "Schemas/PostOAuth2Revoke/PostOAuth2Revoke.swift",
        "Schemas/PostOAuth2Token/PostOAuth2Token.swift",
        "Schemas/PostOAuth2Token/PostOAuth2TokenActorTokenTypeField.swift",
        "Schemas/PostOAuth2Token/PostOAuth2TokenBoxSubjectTypeField.swift",
        "Schemas/PostOAuth2Token/PostOAuth2TokenGrantTypeField.swift",
        "Schemas/PostOAuth2Token/PostOAuth2TokenSubjectTokenTypeField.swift",
        "Schemas/PostOAuth2TokenRefreshAccessToken/PostOAuth2TokenRefreshAccessToken.swift",
        "Schemas/PostOAuth2TokenRefreshAccessToken/PostOAuth2TokenRefreshAccessTokenGrantTypeField.swift",
        "Schemas/RealtimeServer/RealtimeServer.swift",
        "Schemas/RealtimeServers/RealtimeServers.swift",
        "Schemas/RecentItem/RecentItem.swift",
        "Schemas/RecentItem/RecentItemInteractionTypeField.swift",
        "Schemas/RecentItems/RecentItems.swift",
        "Schemas/RetentionPolicies/RetentionPolicies.swift",
        "Schemas/RetentionPolicy/RetentionPolicy.swift",
        "Schemas/RetentionPolicy/RetentionPolicyAssignmentCountsField.swift",
        "Schemas/RetentionPolicy/RetentionPolicyPolicyTypeField.swift",
        "Schemas/RetentionPolicy/RetentionPolicyRetentionTypeField.swift",
        "Schemas/RetentionPolicy/RetentionPolicyStatusField.swift",
        "Schemas/RetentionPolicyAssignment/RetentionPolicyAssignment.swift",
        "Schemas/RetentionPolicyAssignment/RetentionPolicyAssignmentAssignedToField.swift",
        "Schemas/RetentionPolicyAssignment/RetentionPolicyAssignmentAssignedToTypeField.swift",
        "Schemas/RetentionPolicyAssignment/RetentionPolicyAssignmentFilterFieldsField.swift",
        "Schemas/RetentionPolicyAssignment/RetentionPolicyAssignmentTypeField.swift",
        "Schemas/RetentionPolicyAssignmentBase/RetentionPolicyAssignmentBase.swift",
        "Schemas/RetentionPolicyAssignmentBase/RetentionPolicyAssignmentBaseTypeField.swift",
        "Schemas/RetentionPolicyAssignments/RetentionPolicyAssignments.swift",
        "Schemas/RetentionPolicyBase/RetentionPolicyBase.swift",
        "Schemas/RetentionPolicyBase/RetentionPolicyBaseTypeField.swift",
        "Schemas/RetentionPolicyMini/RetentionPolicyMini.swift",
        "Schemas/RetentionPolicyMini/RetentionPolicyMiniDispositionActionField.swift",
        "Schemas/RoleVariable/RoleVariable.swift",
        "Schemas/RoleVariable/RoleVariableTypeField.swift",
        "Schemas/RoleVariable/RoleVariableVariableTypeField.swift",
        "Schemas/RoleVariable/RoleVariableVariableValueField.swift",
        "Schemas/SearchResultWithSharedLink/SearchResultWithSharedLink.swift",
        "Schemas/SearchResults/SearchResults.swift",
        "Schemas/SearchResults/SearchResultsTypeField.swift",
        "Schemas/SearchResultsOrSearchResultsWithSharedLinks/SearchResultsOrSearchResultsWithSharedLinks.swift",
        "Schemas/SearchResultsWithSharedLinks/SearchResultsWithSharedLinks.swift",
        "Schemas/SearchResultsWithSharedLinks/SearchResultsWithSharedLinksTypeField.swift",
        "Schemas/SessionTerminationMessage/SessionTerminationMessage.swift",
        "Schemas/ShieldInformationBarrier/ShieldInformationBarrier.swift",
        "Schemas/ShieldInformationBarrier/ShieldInformationBarrierStatusField.swift",
        "Schemas/ShieldInformationBarrier/ShieldInformationBarrierTypeField.swift",
        "Schemas/ShieldInformationBarrierBase/ShieldInformationBarrierBase.swift",
        "Schemas/ShieldInformationBarrierBase/ShieldInformationBarrierBaseTypeField.swift",
        "Schemas/ShieldInformationBarrierReference/ShieldInformationBarrierReference.swift",
        "Schemas/ShieldInformationBarrierReport/ShieldInformationBarrierReport.swift",
        "Schemas/ShieldInformationBarrierReport/ShieldInformationBarrierReportStatusField.swift",
        "Schemas/ShieldInformationBarrierReportBase/ShieldInformationBarrierReportBase.swift",
        "Schemas/ShieldInformationBarrierReportBase/ShieldInformationBarrierReportBaseTypeField.swift",
        "Schemas/ShieldInformationBarrierReportDetails/ShieldInformationBarrierReportDetails.swift",
        "Schemas/ShieldInformationBarrierReportDetails/ShieldInformationBarrierReportDetailsDetailsField.swift",
        "Schemas/ShieldInformationBarrierReports/ShieldInformationBarrierReports.swift",
        "Schemas/ShieldInformationBarrierSegment/ShieldInformationBarrierSegment.swift",
        "Schemas/ShieldInformationBarrierSegment/ShieldInformationBarrierSegmentTypeField.swift",
        "Schemas/ShieldInformationBarrierSegmentMember/ShieldInformationBarrierSegmentMember.swift",
        "Schemas/ShieldInformationBarrierSegmentMember/ShieldInformationBarrierSegmentMemberShieldInformationBarrierSegmentField.swift",
        "Schemas/ShieldInformationBarrierSegmentMember/ShieldInformationBarrierSegmentMemberShieldInformationBarrierSegmentTypeField.swift",
        "Schemas/ShieldInformationBarrierSegmentMemberBase/ShieldInformationBarrierSegmentMemberBase.swift",
        "Schemas/ShieldInformationBarrierSegmentMemberBase/ShieldInformationBarrierSegmentMemberBaseTypeField.swift",
        "Schemas/ShieldInformationBarrierSegmentMemberMini/ShieldInformationBarrierSegmentMemberMini.swift",
        "Schemas/ShieldInformationBarrierSegmentMembers/ShieldInformationBarrierSegmentMembers.swift",
        "Schemas/ShieldInformationBarrierSegmentRestriction/ShieldInformationBarrierSegmentRestriction.swift",
        "Schemas/ShieldInformationBarrierSegmentRestrictionBase/ShieldInformationBarrierSegmentRestrictionBase.swift",
        "Schemas/ShieldInformationBarrierSegmentRestrictionBase/ShieldInformationBarrierSegmentRestrictionBaseTypeField.swift",
        "Schemas/ShieldInformationBarrierSegmentRestrictionMini/ShieldInformationBarrierSegmentRestrictionMini.swift",
        "Schemas/ShieldInformationBarrierSegmentRestrictionMini/ShieldInformationBarrierSegmentRestrictionMiniRestrictedSegmentField.swift",
        "Schemas/ShieldInformationBarrierSegmentRestrictionMini/ShieldInformationBarrierSegmentRestrictionMiniRestrictedSegmentTypeField.swift",
        "Schemas/ShieldInformationBarrierSegmentRestrictionMini/ShieldInformationBarrierSegmentRestrictionMiniShieldInformationBarrierSegmentField.swift",
        "Schemas/ShieldInformationBarrierSegmentRestrictionMini/ShieldInformationBarrierSegmentRestrictionMiniShieldInformationBarrierSegmentTypeField.swift",
        "Schemas/ShieldInformationBarrierSegmentRestrictions/ShieldInformationBarrierSegmentRestrictions.swift",
        "Schemas/ShieldInformationBarrierSegments/ShieldInformationBarrierSegments.swift",
        "Schemas/ShieldInformationBarriers/ShieldInformationBarriers.swift",
        "Schemas/SignRequest/SignRequest.swift",
        "Schemas/SignRequest/SignRequestSignFilesField.swift",
        "Schemas/SignRequest/SignRequestStatusField.swift",
        "Schemas/SignRequest/SignRequestTypeField.swift",
        "Schemas/SignRequestBase/SignRequestBase.swift",
        "Schemas/SignRequestCreateRequest/SignRequestCreateRequest.swift",
        "Schemas/SignRequestCreateRequest/SignRequestCreateRequestSignatureColorField.swift",
        "Schemas/SignRequestCreateSigner/SignRequestCreateSigner.swift",
        "Schemas/SignRequestCreateSigner/SignRequestCreateSignerRoleField.swift",
        "Schemas/SignRequestPrefillTag/SignRequestPrefillTag.swift",
        "Schemas/SignRequestSigner/SignRequestSigner.swift",
        "Schemas/SignRequestSigner/SignRequestSignerSignerDecisionField.swift",
        "Schemas/SignRequestSigner/SignRequestSignerSignerDecisionTypeField.swift",
        "Schemas/SignRequestSignerInput/SignRequestSignerInput.swift",
        "Schemas/SignRequestSignerInput/SignRequestSignerInputContentTypeField.swift",
        "Schemas/SignRequestSignerInput/SignRequestSignerInputTypeField.swift",
        "Schemas/SignRequests/SignRequests.swift",
        "Schemas/SignTemplate/SignTemplate.swift",
        "Schemas/SignTemplate/SignTemplateAdditionalInfoField.swift",
        "Schemas/SignTemplate/SignTemplateAdditionalInfoNonEditableField.swift",
        "Schemas/SignTemplate/SignTemplateAdditionalInfoRequiredField.swift",
        "Schemas/SignTemplate/SignTemplateAdditionalInfoRequiredSignersField.swift",
        "Schemas/SignTemplate/SignTemplateCustomBrandingField.swift",
        "Schemas/SignTemplate/SignTemplateReadySignLinkField.swift",
        "Schemas/SignTemplate/SignTemplateTypeField.swift",
        "Schemas/SignTemplates/SignTemplates.swift",
        "Schemas/SkillCardsMetadata/SkillCardsMetadata.swift",
        "Schemas/SkillInvocation/SkillInvocation.swift",
        "Schemas/SkillInvocation/SkillInvocationEnterpriseField.swift",
        "Schemas/SkillInvocation/SkillInvocationEnterpriseTypeField.swift",
        "Schemas/SkillInvocation/SkillInvocationSkillField.swift",
        "Schemas/SkillInvocation/SkillInvocationSkillTypeField.swift",
        "Schemas/SkillInvocation/SkillInvocationStatusField.swift",
        "Schemas/SkillInvocation/SkillInvocationStatusStateField.swift",
        "Schemas/SkillInvocation/SkillInvocationTokenField.swift",
        "Schemas/SkillInvocation/SkillInvocationTokenReadField.swift",
        "Schemas/SkillInvocation/SkillInvocationTokenReadTokenTypeField.swift",
        "Schemas/SkillInvocation/SkillInvocationTokenWriteField.swift",
        "Schemas/SkillInvocation/SkillInvocationTokenWriteTokenTypeField.swift",
        "Schemas/SkillInvocation/SkillInvocationTypeField.swift",
        "Schemas/StatusSkillCard/StatusSkillCard.swift",
        "Schemas/StatusSkillCard/StatusSkillCardInvocationField.swift",
        "Schemas/StatusSkillCard/StatusSkillCardInvocationTypeField.swift",
        "Schemas/StatusSkillCard/StatusSkillCardSkillCardTitleField.swift",
        "Schemas/StatusSkillCard/StatusSkillCardSkillCardTypeField.swift",
        "Schemas/StatusSkillCard/StatusSkillCardSkillField.swift",
        "Schemas/StatusSkillCard/StatusSkillCardSkillTypeField.swift",
        "Schemas/StatusSkillCard/StatusSkillCardStatusCodeField.swift",
        "Schemas/StatusSkillCard/StatusSkillCardStatusField.swift",
        "Schemas/StatusSkillCard/StatusSkillCardTypeField.swift",
        "Schemas/StoragePolicies/StoragePolicies.swift",
        "Schemas/StoragePolicy/StoragePolicy.swift",
        "Schemas/StoragePolicyAssignment/StoragePolicyAssignment.swift",
        "Schemas/StoragePolicyAssignment/StoragePolicyAssignmentAssignedToField.swift",
        "Schemas/StoragePolicyAssignment/StoragePolicyAssignmentTypeField.swift",
        "Schemas/StoragePolicyAssignments/StoragePolicyAssignments.swift",
        "Schemas/StoragePolicyMini/StoragePolicyMini.swift",
        "Schemas/StoragePolicyMini/StoragePolicyMiniTypeField.swift",
        "Schemas/Task/Task.swift",
        "Schemas/Task/TaskActionField.swift",
        "Schemas/Task/TaskCompletionRuleField.swift",
        "Schemas/Task/TaskTypeField.swift",
        "Schemas/TaskAssignment/TaskAssignment.swift",
        "Schemas/TaskAssignment/TaskAssignmentResolutionStateField.swift",
        "Schemas/TaskAssignment/TaskAssignmentTypeField.swift",
        "Schemas/TaskAssignments/TaskAssignments.swift",
        "Schemas/Tasks/Tasks.swift",
        "Schemas/TemplateSigner/TemplateSigner.swift",
        "Schemas/TemplateSigner/TemplateSignerRoleField.swift",
        "Schemas/TemplateSignerInput/TemplateSignerInput.swift",
        "Schemas/TemplateSignerInput/TemplateSignerInputContentTypeField.swift",
        "Schemas/TemplateSignerInput/TemplateSignerInputCoordinatesField.swift",
        "Schemas/TemplateSignerInput/TemplateSignerInputDimensionsField.swift",
        "Schemas/TemplateSignerInput/TemplateSignerInputTypeField.swift",
        "Schemas/TermsOfService/TermsOfService.swift",
        "Schemas/TermsOfService/TermsOfServiceEnterpriseField.swift",
        "Schemas/TermsOfService/TermsOfServiceEnterpriseTypeField.swift",
        "Schemas/TermsOfService/TermsOfServiceStatusField.swift",
        "Schemas/TermsOfService/TermsOfServiceTosTypeField.swift",
        "Schemas/TermsOfServiceBase/TermsOfServiceBase.swift",
        "Schemas/TermsOfServiceBase/TermsOfServiceBaseTypeField.swift",
        "Schemas/TermsOfServiceUserStatus/TermsOfServiceUserStatus.swift",
        "Schemas/TermsOfServiceUserStatus/TermsOfServiceUserStatusTypeField.swift",
        "Schemas/TermsOfServiceUserStatuses/TermsOfServiceUserStatuses.swift",
        "Schemas/TermsOfServices/TermsOfServices.swift",
        "Schemas/TimelineSkillCard/TimelineSkillCard.swift",
        "Schemas/TimelineSkillCard/TimelineSkillCardEntriesAppearsField.swift",
        "Schemas/TimelineSkillCard/TimelineSkillCardEntriesField.swift",
        "Schemas/TimelineSkillCard/TimelineSkillCardInvocationField.swift",
        "Schemas/TimelineSkillCard/TimelineSkillCardInvocationTypeField.swift",
        "Schemas/TimelineSkillCard/TimelineSkillCardSkillCardTitleField.swift",
        "Schemas/TimelineSkillCard/TimelineSkillCardSkillCardTypeField.swift",
        "Schemas/TimelineSkillCard/TimelineSkillCardSkillField.swift",
        "Schemas/TimelineSkillCard/TimelineSkillCardSkillTypeField.swift",
        "Schemas/TimelineSkillCard/TimelineSkillCardTypeField.swift",
        "Schemas/TrackingCode/TrackingCode.swift",
        "Schemas/TrackingCode/TrackingCodeTypeField.swift",
        "Schemas/TranscriptSkillCard/TranscriptSkillCard.swift",
        "Schemas/TranscriptSkillCard/TranscriptSkillCardEntriesAppearsField.swift",
        "Schemas/TranscriptSkillCard/TranscriptSkillCardEntriesField.swift",
        "Schemas/TranscriptSkillCard/TranscriptSkillCardInvocationField.swift",
        "Schemas/TranscriptSkillCard/TranscriptSkillCardInvocationTypeField.swift",
        "Schemas/TranscriptSkillCard/TranscriptSkillCardSkillCardTitleField.swift",
        "Schemas/TranscriptSkillCard/TranscriptSkillCardSkillCardTypeField.swift",
        "Schemas/TranscriptSkillCard/TranscriptSkillCardSkillField.swift",
        "Schemas/TranscriptSkillCard/TranscriptSkillCardSkillTypeField.swift",
        "Schemas/TranscriptSkillCard/TranscriptSkillCardTypeField.swift",
        "Schemas/TrashFile/TrashFile.swift",
        "Schemas/TrashFile/TrashFileItemStatusField.swift",
        "Schemas/TrashFile/TrashFilePathCollectionEntriesField.swift",
        "Schemas/TrashFile/TrashFilePathCollectionEntriesTypeField.swift",
        "Schemas/TrashFile/TrashFilePathCollectionField.swift",
        "Schemas/TrashFile/TrashFileTypeField.swift",
        "Schemas/TrashFileRestored/TrashFileRestored.swift",
        "Schemas/TrashFileRestored/TrashFileRestoredItemStatusField.swift",
        "Schemas/TrashFileRestored/TrashFileRestoredPathCollectionField.swift",
        "Schemas/TrashFileRestored/TrashFileRestoredTypeField.swift",
        "Schemas/TrashFolder/TrashFolder.swift",
        "Schemas/TrashFolder/TrashFolderItemStatusField.swift",
        "Schemas/TrashFolder/TrashFolderPathCollectionEntriesField.swift",
        "Schemas/TrashFolder/TrashFolderPathCollectionEntriesTypeField.swift",
        "Schemas/TrashFolder/TrashFolderPathCollectionField.swift",
        "Schemas/TrashFolder/TrashFolderTypeField.swift",
        "Schemas/TrashFolderRestored/TrashFolderRestored.swift",
        "Schemas/TrashFolderRestored/TrashFolderRestoredItemStatusField.swift",
        "Schemas/TrashFolderRestored/TrashFolderRestoredPathCollectionField.swift",
        "Schemas/TrashFolderRestored/TrashFolderRestoredTypeField.swift",
        "Schemas/TrashWebLink/TrashWebLink.swift",
        "Schemas/TrashWebLink/TrashWebLinkItemStatusField.swift",
        "Schemas/TrashWebLink/TrashWebLinkPathCollectionEntriesField.swift",
        "Schemas/TrashWebLink/TrashWebLinkPathCollectionEntriesTypeField.swift",
        "Schemas/TrashWebLink/TrashWebLinkPathCollectionField.swift",
        "Schemas/TrashWebLink/TrashWebLinkTypeField.swift",
        "Schemas/TrashWebLinkRestored/TrashWebLinkRestored.swift",
        "Schemas/TrashWebLinkRestored/TrashWebLinkRestoredItemStatusField.swift",
        "Schemas/TrashWebLinkRestored/TrashWebLinkRestoredPathCollectionField.swift",
        "Schemas/TrashWebLinkRestored/TrashWebLinkRestoredTypeField.swift",
        "Schemas/UploadPart/UploadPart.swift",
        "Schemas/UploadPartMini/UploadPartMini.swift",
        "Schemas/UploadParts/UploadParts.swift",
        "Schemas/UploadParts/UploadPartsOrderDirectionField.swift",
        "Schemas/UploadParts/UploadPartsOrderField.swift",
        "Schemas/UploadSession/UploadSession.swift",
        "Schemas/UploadSession/UploadSessionSessionEndpointsField.swift",
        "Schemas/UploadSession/UploadSessionTypeField.swift",
        "Schemas/UploadUrl/UploadUrl.swift",
        "Schemas/UploadedPart/UploadedPart.swift",
        "Schemas/User/User.swift",
        "Schemas/User/UserNotificationEmailField.swift",
        "Schemas/User/UserStatusField.swift",
        "Schemas/UserAvatar/UserAvatar.swift",
        "Schemas/UserAvatar/UserAvatarPicUrlsField.swift",
        "Schemas/UserBase/UserBase.swift",
        "Schemas/UserBase/UserBaseTypeField.swift",
        "Schemas/UserCollaborations/UserCollaborations.swift",
        "Schemas/UserFull/UserFull.swift",
        "Schemas/UserFull/UserFullEnterpriseField.swift",
        "Schemas/UserFull/UserFullEnterpriseTypeField.swift",
        "Schemas/UserFull/UserFullRoleField.swift",
        "Schemas/UserIntegrationMappings/UserIntegrationMappings.swift",
        "Schemas/UserMini/UserMini.swift",
        "Schemas/Users/Users.swift",
        "Schemas/Users/UsersOrderDirectionField.swift",
        "Schemas/Users/UsersOrderField.swift",
        "Schemas/Watermark/Watermark.swift",
        "Schemas/Watermark/WatermarkWatermarkField.swift",
        "Schemas/WebLink/WebLink.swift",
        "Schemas/WebLink/WebLinkItemStatusField.swift",
        "Schemas/WebLink/WebLinkPathCollectionField.swift",
        "Schemas/WebLink/WebLinkSharedLinkAccessField.swift",
        "Schemas/WebLink/WebLinkSharedLinkEffectiveAccessField.swift",
        "Schemas/WebLink/WebLinkSharedLinkEffectivePermissionField.swift",
        "Schemas/WebLink/WebLinkSharedLinkField.swift",
        "Schemas/WebLink/WebLinkSharedLinkPermissionsField.swift",
        "Schemas/WebLinkBase/WebLinkBase.swift",
        "Schemas/WebLinkBase/WebLinkBaseTypeField.swift",
        "Schemas/WebLinkMini/WebLinkMini.swift",
        "Schemas/Webhook/Webhook.swift",
        "Schemas/Webhook/WebhookTriggersField.swift",
        "Schemas/WebhookInvocation/WebhookInvocation.swift",
        "Schemas/WebhookInvocation/WebhookInvocationTriggerField.swift",
        "Schemas/WebhookInvocation/WebhookInvocationTypeField.swift",
        "Schemas/WebhookMini/WebhookMini.swift",
        "Schemas/WebhookMini/WebhookMiniTargetField.swift",
        "Schemas/WebhookMini/WebhookMiniTargetTypeField.swift",
        "Schemas/WebhookMini/WebhookMiniTypeField.swift",
        "Schemas/Webhooks/Webhooks.swift",
        "Schemas/Workflow/Workflow.swift",
        "Schemas/Workflow/WorkflowFlowsField.swift",
        "Schemas/Workflow/WorkflowFlowsOutcomesActionTypeField.swift",
        "Schemas/Workflow/WorkflowFlowsOutcomesField.swift",
        "Schemas/Workflow/WorkflowFlowsOutcomesIfRejectedActionTypeField.swift",
        "Schemas/Workflow/WorkflowFlowsOutcomesIfRejectedField.swift",
        "Schemas/Workflow/WorkflowFlowsOutcomesIfRejectedTypeField.swift",
        "Schemas/Workflow/WorkflowFlowsOutcomesTypeField.swift",
        "Schemas/Workflow/WorkflowFlowsTriggerField.swift",
        "Schemas/Workflow/WorkflowFlowsTriggerScopeField.swift",
        "Schemas/Workflow/WorkflowFlowsTriggerScopeObjectField.swift",
        "Schemas/Workflow/WorkflowFlowsTriggerScopeObjectTypeField.swift",
        "Schemas/Workflow/WorkflowFlowsTriggerScopeTypeField.swift",
        "Schemas/Workflow/WorkflowFlowsTriggerTriggerTypeField.swift",
        "Schemas/Workflow/WorkflowFlowsTriggerTypeField.swift",
        "Schemas/Workflow/WorkflowFlowsTypeField.swift",
        "Schemas/WorkflowFull/WorkflowFull.swift",
        "Schemas/WorkflowMini/WorkflowMini.swift",
        "Schemas/WorkflowMini/WorkflowMiniTypeField.swift",
        "Schemas/Workflows/Workflows.swift",
        "Schemas/ZipDownload/ZipDownload.swift",
        "Schemas/ZipDownload/ZipDownloadNameConflictsField.swift",
        "Schemas/ZipDownload/ZipDownloadNameConflictsTypeField.swift",
        "Schemas/ZipDownloadRequest/ZipDownloadRequest.swift",
        "Schemas/ZipDownloadRequest/ZipDownloadRequestItemsField.swift",
        "Schemas/ZipDownloadRequest/ZipDownloadRequestItemsTypeField.swift",
        "Schemas/ZipDownloadStatus/ZipDownloadStatus.swift",
        "Schemas/ZipDownloadStatus/ZipDownloadStatusStateField.swift",
        "Serialization/Json/AnyCodeable.swift",
        "Serialization/Json/Codable+Extensions.swift",
        "Serialization/Json/CodableStringEnum.swift",
        "Serialization/Json/JsonUtils.swift",
        "Serialization/Json/SerializedData.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.6"
}
Done.