Yurba.js Documentation
    Preparing search index...

    Interface Message

    TODO LIST FOR ALL TYPES:

    📝 CORE ENTITIES: [x] Photo [x] Add payload methods [x] Add delete methods [x] Post [x] Add payload methods [x] Add edit methods [x] Add delete methods [x] Message [x] Add payload methods [x] Add edit methods [x] Add delete methods [x] Comments [x] Add payload methods [x] Add delete methods [x] Dialog [x] Add payload methods [x] Add edit methods [x] Add delete methods

    📎 ATTACHMENTS: [x] Files (Attachments) [x] Add payload methods [x] Add delete methods [ ] Videos (Attachments) [ ] Add payload methods [ ] Add edit methods [ ] Add delete methods [x] Music (Attachments) [x] Add payload methods [x] Add delete methods

    🔍 FEATURES: [x] Search

    [ ] Goling (Settings) [ ] Add types [ ] Add methods

    [ ] Shop

    👥 SOCIAL: [X] Friends [x] Notifications // need to add gift model

    interface Message {
        Attachments: Attachment[];
        Author: Author;
        Dialog: DialogInfo;
        EditTimestamp: number;
        ID: number;
        Photos: number[];
        Read: boolean;
        ReplyTo: null | Message;
        Text: string;
        Timestamp: number;
        Type: MessageType;
        Views: number;
    }
    Index

    Properties

    Attachments: Attachment[]
    Author: Author
    Dialog: DialogInfo
    EditTimestamp: number
    ID: number
    Photos: number[]
    Read: boolean
    ReplyTo: null | Message
    Text: string
    Timestamp: number
    Views: number