deleteCommentPropertyById method
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',
},
);
}