Google Apps Script API
    Preparing search index...

    A Comment attached to any Sites page. A rebuilt version of Sites was launched on November 22, 2016. Apps Script cannot currently access or modify Sites made with this version, but script can still access classic Sites.

    interface Comment {
        deleteComment(): void;
        getAuthorEmail(): string;
        getAuthorName(): string;
        getContent(): string;
        getDatePublished(): GoogleAppsScript.Base.Date;
        getLastUpdated(): GoogleAppsScript.Base.Date;
        getParent(): GoogleAppsScript.Sites.Page;
        setContent(content: string): GoogleAppsScript.Sites.Comment;
        setParent(
            parent: GoogleAppsScript.Sites.Page,
        ): GoogleAppsScript.Sites.Comment;
    }
    Index

    Methods