getCustomContentLabels method

Future<MultiEntityResult<Label>> getCustomContentLabels({
  1. required int id,
  2. String? prefix,
  3. String? sort,
  4. String? cursor,
  5. int? limit,
})

Returns the labels for a specific piece of custom content. The number of results is limited by the limit parameter and additional results (if available) will be available through the next URL present in the Link response header.

Permissions required: Permission to view the custom content and its corresponding space.

Implementation

Future<MultiEntityResult<Label>> getCustomContentLabels(
    {required int id,
    String? prefix,
    String? sort,
    String? cursor,
    int? limit}) async {
  return MultiEntityResult.fromJson(
    await _client.send(
      'get',
      'custom-content/{id}/labels',
      pathParameters: {
        'id': '$id',
      },
      queryParameters: {
        if (prefix != null) 'prefix': prefix,
        if (sort != null) 'sort': sort,
        if (cursor != null) 'cursor': cursor,
        if (limit != null) 'limit': '$limit',
      },
    ),
    reviver: (v) => Label.fromJson(v as Map<String, Object?>),
  );
}