* Update the description of the field. * * Throws an error if the user does not have permission to update the field, or if an invalid description is provided. * * @param description new description for the field * @returns * * #### Example * ```js * await field.updateDe
(description: string | null)
| 138 | * ``` |
| 139 | */ |
| 140 | public async updateDescriptionAsync(description: string | null): Promise<void> { |
| 141 | return await this.modelField.updateDescription(description); |
| 142 | } |
| 143 | |
| 144 | /** |
| 145 | * |
nothing calls this directly
no test coverage detected