Member Junction
    Preparing search index...

    Display item representing an attachment linked to a specific entity record.

    interface RecordAttachmentItem {
        CategoryID?: string | null;
        CategoryName?: string | null;
        ContentType?: string | null;
        CreatedAt?: Date | null;
        Description?: string | null;
        FileEntity?: MJFileEntity;
        FileID: string;
        FileSize?: number | null;
        LinkEntity?: MJFileEntityRecordLinkEntity;
        LinkID: string;
        Name: string;
        ProviderBrandColor?: string | null;
        ProviderIconClass?: string | null;
        ProviderID?: string | null;
        ProviderName?: string | null;
        Status?: string | null;
        StorageAccountID?: string | null;
        UpdatedAt?: Date | null;
    }
    Index

    Properties

    CategoryID?: string | null

    File Category ID

    CategoryName?: string | null

    File Category Name

    ContentType?: string | null

    MIME content type (e.g. 'application/pdf', 'image/png')

    CreatedAt?: Date | null

    Created timestamp

    Description?: string | null

    File description

    FileEntity?: MJFileEntity

    The underlying File entity if loaded

    FileID: string

    The MJ: Files primary key

    FileSize?: number | null

    File size in bytes

    The underlying Link entity if loaded

    LinkID: string

    The MJ: File Entity Record Links primary key

    Name: string

    File display name

    ProviderBrandColor?: string | null

    Storage Provider Brand Color (e.g. '#0061D5')

    ProviderIconClass?: string | null

    Storage Provider Icon CSS class (e.g. 'fa-solid fa-box', 'fa-brands fa-aws')

    ProviderID?: string | null

    Storage Provider ID

    ProviderName?: string | null

    Storage Provider Name (e.g. 'Azure Blob Storage', 'AWS S3')

    Status?: string | null

    Upload / processing status (e.g. 'Uploaded', 'Pending')

    StorageAccountID?: string | null

    Storage Account ID

    UpdatedAt?: Date | null

    Updated timestamp