TootField

public struct TootField : Codable, Hashable, Sendable

Represents a profile field as a name-value pair with optional verification.

  • Undocumented

    Declaration

    Swift

    public init(name: String, value: String, verifiedAt: Date? = nil)
  • The key of a given field’s key-value pair.

    Declaration

    Swift

    public var name: String
  • The value associated with the name key.

    Declaration

    Swift

    public var value: String
  • Timestamp of when the server verified a URL value for a rel=“me” link.

    Declaration

    Swift

    public var verifiedAt: Date?