getPageContentProperties method

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

Retrieves Content Properties tied to a specified page.

Permissions required: Permission to view the page.

Implementation

Future<MultiEntityResult<ContentProperty>> getPageContentProperties(
    {required int pageId,
    String? key,
    String? sort,
    String? cursor,
    int? limit,
    bool? serializeIdsAsStrings}) async {
  return MultiEntityResult.fromJson(
    await _client.send(
      'get',
      'pages/{page-id}/properties',
      pathParameters: {
        'page-id': '$pageId',
      },
      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?>),
  );
}