RemoteTabRecord

public struct RemoteTabRecord : Equatable, Hashable
extension RemoteTabRecord: Sendable
  • Declaration

    Swift

    public var title: String
  • Declaration

    Swift

    public var urlHistory: [String]
  • Declaration

    Swift

    public var icon: String?
  • Declaration

    Swift

    public var lastUsed: Int64
  • Declaration

    Swift

    public var inactive: Bool
  • Declaration

    Swift

    public var pinned: Bool
  • The index within the window_id.

    Declaration

    Swift

    public var index: UInt32
  • Declaration

    Swift

    public var windowId: String
  • Declaration

    Swift

    public var tabGroupId: String
  • Declaration

    Swift

    public init(title: String, urlHistory: [String], icon: String?, lastUsed: Int64, inactive: Bool = false, pinned: Bool = false, 
        /**
         * The index within the window_id.
         */index: UInt32 = UInt32(0), windowId: String = "", tabGroupId: String = "")