getCustomContentContentProperties method

Future<MultiEntityResult<ContentProperty>> getCustomContentContentProperties({
  1. required int customContentId,
  2. String? key,
  3. String? sort,
  4. String? cursor,
  5. int? limit,
  6. bool? serializeIdsAsStrings,
})

Retrieves Content Properties tied to a specified custom content.

Permissions required: Permission to view the custom content.

Implementation

Future<MultiEntityResult<ContentProperty>> getCustomContentContentProperties(
    {required int customContentId,
    String? key,
    String? sort,
    String? cursor,
    int? limit,
    bool? serializeIdsAsStrings}) async {
  return MultiEntityResult.fromJson(
    await _client.send(
      'get',
      'custom-content/{custom-content-id}/properties',
      pathParameters: {
        'custom-content-id': '$customContentId',
      },
      queryParameters: {
        if (key != null) 'key': key,
        if (sort != null) 'sort': sort,
        if (cursor != null) 'cursor': cursor,
        if (limit != null) 'limit': '$limit',
        if (serializeIdsAsStrings != null)
          'serialize-ids-as-strings': '$serializeIdsAsStrings',
      },
    ),
    reviver: (v) => ContentProperty.fromJson(v as Map<String, Object?>),
  );
}