class ContentRecommendationsListOptions
{
IEnumerable<Guid> ContainerIds { get; set; }
IEnumerable<Guid> ContentTypeIds { get; set; }
int? PageIndex { get; set; }
int? PageSize { get; set; }
bool? UseCache { get; set; }
}
|
名称 |
类型 |
描述 |
默认值 |
选项 |
|
ContainerIds |
IEnumerable<Guid> |
Specify the comma-separated list of containers used to scope recommendations. |
||
|
ContentTypeIds |
IEnumerable<Guid> |
Specify the comma-separated list of types of content to return in recommendations. |
||
|
PageIndex |
int? |
Specify the page number of paged results to return. Zero-based index. |
||
|
PageSize |
int? |
Specify the number of results to return per page. |
||
|
UseCache |
bool? |
Specify whether or not caching can be used to satisfy the request. |