You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
// C o p y r i g h t © 2 0 2 2 R a n g e p r o o f P t y L t d . A l l r i g h t s r e s e r v e d .
import Foundation
import GRDB
import SessionUtilitiesKit
// / T h i s r e c o r d i s c r e a t e d f o r a n i n c o m i n g t y p i n g i n d i c a t o r m e s s a g e
// /
// / * * N o t e : * * C u r r e n t l y w e o n l y s u p p o r t t y p i n g i n d i c a t o r o n c o n t a c t t h r e a d ( o n e - t o - o n e ) , t o s u p p o r t g r o u p s w e w o u l d n e e d
// / t o c h a n g e t h e s t r u c t u r e o f t h i s t a b l e ( s i n c e i t ’ s p r i m a r y k e y i s t h e t h r e a d I d )
public struct ThreadTypingIndicator : Codable , FetchableRecord , PersistableRecord , TableRecord , ColumnExpressible {
public static var databaseTableName : String { " threadTypingIndicator " }
internal static let threadForeignKey = ForeignKey ( [ Columns . threadId ] , to : [ SessionThread . Columns . id ] )
private static let thread = belongsTo ( SessionThread . self , using : threadForeignKey )
public typealias Columns = CodingKeys
public enum CodingKeys : String , CodingKey , ColumnExpression , CaseIterable {
case threadId
case timestampMs
}
public let threadId : String
public let timestampMs : Int64
// MARK: - R e l a t i o n s h i p s
public var thread : QueryInterfaceRequest < SessionThread > {
request ( for : ThreadTypingIndicator . thread )
}
}