getInlineCommentOperations method

Future<PermittedOperationsResponse> getInlineCommentOperations(
  1. int id
)

Returns the permitted operations on specific inline comment.

Permissions required: Permission to view the parent content of the inline comment and its corresponding space.

Implementation

Future<PermittedOperationsResponse> getInlineCommentOperations(int id) async {
  return PermittedOperationsResponse.fromJson(await _client.send(
    'get',
    'inline-comments/{id}/operations',
    pathParameters: {
      'id': '$id',
    },
  ));
}