/
Pagination Objects
Pagination Objects
Pagination Set
This object refers to how Pagination defined in Hawksearch for your account will be returned to or fed to the Hawksearch API.
public class PaginationSet {
public int PaginationSetId { get; set; }
public Guid SyncGuid { get; set; }
public string Name { get; set; }
public string Code { get; set; }
public string RuleXml { get; set; }
public int SortOrder { get; set; }
public string Options { get; set; }
public list < PaginationSetOptionsData > OptionList { get; set; }
public int NumberOfPageLinks { get; set; }
public bool IsShowFirstLink { get; set; }
public bool IsShowLastLink { get; set; }
public DateTime CreateDate { get; set; }
public DateTime ModifyDate { get; set; }
}
Pagination Set Options Data
public class PaginationSetOptionsData
{
public bool IsDefault{ get; set; }
public string Label{ get; set; }
public int Value { get; set; }
}