getFooterCommentOperations method

Future<PermittedOperationsResponse> getFooterCommentOperations(
  1. int id
)

Returns the permitted operations on specific footer comment.

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

Implementation

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