deleteCommentPropertyById method

Future<void> deleteCommentPropertyById({
  1. required int commentId,
  2. required int propertyId,
})

Deletes a content property for a comment by its id.

Permissions required: Permission to edit the comment.

Implementation

Future<void> deleteCommentPropertyById(
    {required int commentId, required int propertyId}) async {
  await _client.send(
    'delete',
    'comments/{comment-id}/properties/{property-id}',
    pathParameters: {
      'comment-id': '$commentId',
      'property-id': '$propertyId',
    },
  );
}