Part of lp.answers.interfaces.faqcollection View In Hierarchy
Known subclasses: lp.answers.interfaces.faq.IFAQSet, lp.answers.interfaces.webservice.IFAQTarget
This interface allows for retrieving and searching for FAQs. The
more specific IFAQTarget
interface is used for objects that directly
contain the FAQ.
Method | getFAQ | Return the IFAQ in this collection with the requested id. |
Method | searchFAQs | Return the FAQs in the collection that matches the search criteria. |
Parameters | search_text | A string that is matched against the FAQ title, keywords and content. If None, the search_text is not included as a filter criteria. |
owner | A person that is matched against the owner of the FAQ. If None, owner is not included as a filter criteria. | |
sort | One value from the FAQSort enumeration. If None, a default value is used. When there is a search_text value, the default is to sort by RELEVANCY, otherwise results are sorted NEWEST_FIRST. |