FreeTextSearchDetails¶
-
class
oci.resource_search.models.
FreeTextSearchDetails
(**kwargs)¶ Bases:
oci.resource_search.models.search_details.SearchDetails
A request containing arbitrary text that must be present in the resource.
Attributes
MATCHING_CONTEXT_TYPE_HIGHLIGHTS
str(object=’’) -> str MATCHING_CONTEXT_TYPE_NONE
str(object=’’) -> str matching_context_type
Gets the matching_context_type of this SearchDetails. text
[Required] Gets the text of this FreeTextSearchDetails. type
[Required] Gets the type of this SearchDetails. Methods
__init__
(**kwargs)Initializes a new FreeTextSearchDetails object with values from keyword arguments. get_subtype
(object_dictionary)Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype. -
MATCHING_CONTEXT_TYPE_HIGHLIGHTS
= 'HIGHLIGHTS'¶
-
MATCHING_CONTEXT_TYPE_NONE
= 'NONE'¶
-
__init__
(**kwargs)¶ Initializes a new FreeTextSearchDetails object with values from keyword arguments. The default value of the
type
attribute of this class isFreeText
and it should not be changed. The following keyword arguments are supported (corresponding to the getters/setters of this class):Parameters: - type (str) – The value to assign to the type property of this FreeTextSearchDetails.
- matching_context_type (str) – The value to assign to the matching_context_type property of this FreeTextSearchDetails. Allowed values for this property are: “NONE”, “HIGHLIGHTS”
- text (str) – The value to assign to the text property of this FreeTextSearchDetails.
-
static
get_subtype
(object_dictionary)¶ Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype.
-
matching_context_type
¶ Gets the matching_context_type of this SearchDetails. The type of matching context returned in the response. If you specify HIGHLIGHTS, then the service will highlight fragments in its response. (For more information, see ResourceSummary.searchContext and SearchContext.) The default setting is NONE.
Allowed values for this property are: “NONE”, “HIGHLIGHTS”
Returns: The matching_context_type of this SearchDetails. Return type: str
-
text
¶ [Required] Gets the text of this FreeTextSearchDetails. The text to search for.
Returns: The text of this FreeTextSearchDetails. Return type: str
-
type
¶ [Required] Gets the type of this SearchDetails. The type of SearchDetails, whether FreeText or Structured.
Returns: The type of this SearchDetails. Return type: str
-