UpdateStatistics Structure Reference
- Last UpdatedJul 8, 2025
- 1 minute read
public struct UpdateStatistics
Defines statistics related to the success or failure of patched bundles. It can be used to monitor and analyze the reliability of binary patch updates.
-
Number of bundles patched successfully
Declaration
Swift
public var totalPatchedBundlesSuccess: UInt64
-
Number of bundles failed to patch
Declaration
Swift
public var totalPatchedBundlesFail: UInt64
-
Creates a new instance.
Declaration
Swift
public init(totalPatchedBundlesSuccess: UInt64 = 0, totalPatchedBundlesFail: UInt64 = 0)