| 1887 | * A single comment in the document |
| 1888 | */ |
| 1889 | export interface Comment { |
| 1890 | id: /** |
| 1891 | * RecordId |
| 1892 | * An unique Instant JSON identifier of the record. Must be unique in a layer. |
| 1893 | * example: |
| 1894 | * 01DNEDPQQ22W49KDXRFPG4EPEQ |
| 1895 | */ |
| 1896 | RecordId; |
| 1897 | group: /** |
| 1898 | * Group |
| 1899 | * The resource group. |
| 1900 | * |
| 1901 | * Group allows to grant access to resources via Collaboration Permissions. |
| 1902 | */ |
| 1903 | Group; |
| 1904 | createdBy: /** |
| 1905 | * User |
| 1906 | * The user identifier. |
| 1907 | * |
| 1908 | * Note that Nutrient Document Engine does not provide any kind of user management and accepts |
| 1909 | * any string (or `null`) as a valid user ID. |
| 1910 | * |
| 1911 | * For records created or updated in the browser, the `user_id `is extracted from the |
| 1912 | * JSON Web Token (JWT) used for authentication. |
| 1913 | */ |
| 1914 | User; |
| 1915 | updatedBy: /** |
| 1916 | * User |
| 1917 | * The user identifier. |
| 1918 | * |
| 1919 | * Note that Nutrient Document Engine does not provide any kind of user management and accepts |
| 1920 | * any string (or `null`) as a valid user ID. |
| 1921 | * |
| 1922 | * For records created or updated in the browser, the `user_id `is extracted from the |
| 1923 | * JSON Web Token (JWT) used for authentication. |
| 1924 | */ |
| 1925 | User; |
| 1926 | content: /** |
| 1927 | * Comments JSON |
| 1928 | * JSON representation of a comment. |
| 1929 | */ |
| 1930 | CommentContent; |
| 1931 | } |
| 1932 | /** |
| 1933 | * Comments JSON |
| 1934 | * JSON representation of a comment. |
nothing calls this directly
no outgoing calls
no test coverage detected