Client

public struct Client : Codable

Information about the client.

  • id

    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.Client
    Parameters
    bundle

    Bundle to use.

    Return Value

    Client metadata.