Client
public struct Client : Codable
Information about the client.
-
The unique id of the client (Typically Bundle Id of the app).
Declaration
Swift
public let id: String? -
Human readable name of the client.
Declaration
Swift
public let name: String? -
The version of the client.
Declaration
Swift
public let version: String? -
Create Client metadata from a bundle.
Declaration
Swift
public static func from(bundle: Bundle) -> MimiTestMetadata.ClientParameters
bundleBundle to use.
Return Value
Client metadata.
Client Structure Reference