UserNote
final class UserNote : ModelA UserNote is intended as a free-form text field that will appear on a UserProfile,
in which the viewing User can make notes about the profile’s user.
It is not visible to the profile’s owner nor to any other user; it is for the viewing
user’s use only. In other words, different users viewing the same profile will each see
their own viewer-specific UserNote text.
- 
                  
                  DeclarationSwift static let schema: String
- 
                  
                  The note’s ID, provisioned automatically. DeclarationSwift @ID var id: UUID?
- 
                  
                  The text of the note. DeclarationSwift @Field var note: String
- 
                  
                  Timestamp of the model’s creation, set automatically. DeclarationSwift @Timestamp var createdAt: Date?
- 
                  
                  Timestamp of the model’s last update, set automatically. DeclarationSwift @Timestamp var updatedAt: Date?
- 
                  
                  DeclarationSwift init()
- 
                  
                  Creates a new UserNote. DeclarationSwift init(authorID: UUID, subjectID: UUID, note: String = "")ParametersauthorThe note’s author. profileThe associated UserProfile.noteThe text of the note. 
 View on GitHub
            View on GitHub
           UserNote Class Reference
      UserNote Class Reference