ApplicationInfo

public struct ApplicationInfo : Equatable

Defines application metadata.

These properties are optional and informational. They may be used in LaunchDarkly analytics or other product features, but they do not affect feature flag evaluations.

  • Undocumented

    Declaration

    Swift

    public init()
  • A unique identifier representing the application where the LaunchDarkly SDK is running.

    This can be specified as any string value as long as it only uses the following characters: ASCII letters, ASCII digits, period, hyphen, underscore. A string containing any other characters will be ignored.

    Declaration

    Swift

    public mutating func applicationIdentifier(_ applicationId: String)
  • A unique identifier representing the version of the application where the LaunchDarkly SDK is running.

    This can be specified as any string value as long as it only uses the following characters: ASCII letters, ASCII digits, period, hyphen, underscore. A string containing any other characters will be ignored.

    Declaration

    Swift

    public mutating func applicationVersion(_ applicationVersion: String)