Attribute

public class Attribute

This class represents a single attribute in a Trusted Key claim.

  • The display name for this attribute.

    Declaration

    Swift

    public var DisplayName: String = ""
  • The original OID in dotted notation.

    Declaration

    Swift

    public var Path: OIDs.Dotted = ""
  • The value of this attribute.

    Declaration

    Swift

    public var Value: String = ""
  • Holds the actual claim name.

    Declaration

    Swift

    public var Name: String = ""
  • If claim is image claim, return the claim value; else return null.

    Declaration

    Swift

    public var ImageClaimValue: String?
  • If claim is NOT image claim (claim is standard claim), return the claim value; else return null.

    Declaration

    Swift

    public var ClaimValue: String?