LicenseModel

public class LicenseModel: NSObject

A LicenseModel represents all properties of a license.

  • The owner of the license.

    Declaration

    Swift

    public let owner: String
  • The license’s signature.

    Declaration

    Swift

    public let signature: String
  • The app identifier that is registered with the license.

    Declaration

    Swift

    public let appIdentifier: [String]
  • The platform of this license.

    Declaration

    Swift

    public let platform: String
  • Whether or not the license is an enterprise license.

    Declaration

    Swift

    public let isEnterpriseLicense: Bool
  • The API token that belongs to this license.

    Declaration

    Swift

    public let apiToken: String
  • A list of server domains that this license sends API requests to.

    Declaration

    Swift

    public let domains: [String]
  • The version of the license.

    Declaration

    Swift

    public let licenseVersion: String