Skip to content

Latest commit

 

History

History
77 lines (42 loc) · 2.68 KB

TokenFilterasciiFolding.md

File metadata and controls

77 lines (42 loc) · 2.68 KB

TokenFilterasciiFolding

Properties

Name Type Description Notes
OriginalTokens Pointer to string Value that indicates whether to include or omit the original tokens in the output of the token filter. Choose `include` if you want to support queries on both the original tokens as well as the converted forms. Choose `omit` if you want to query only on the converted forms of the original tokens. [optional] [default to "omit"]
Type string Human-readable label that identifies this token filter type.

Methods

NewTokenFilterasciiFolding

func NewTokenFilterasciiFolding(type_ string, ) *TokenFilterasciiFolding

NewTokenFilterasciiFolding instantiates a new TokenFilterasciiFolding object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

NewTokenFilterasciiFoldingWithDefaults

func NewTokenFilterasciiFoldingWithDefaults() *TokenFilterasciiFolding

NewTokenFilterasciiFoldingWithDefaults instantiates a new TokenFilterasciiFolding object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

GetOriginalTokens

func (o *TokenFilterasciiFolding) GetOriginalTokens() string

GetOriginalTokens returns the OriginalTokens field if non-nil, zero value otherwise.

GetOriginalTokensOk

func (o *TokenFilterasciiFolding) GetOriginalTokensOk() (*string, bool)

GetOriginalTokensOk returns a tuple with the OriginalTokens field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetOriginalTokens

func (o *TokenFilterasciiFolding) SetOriginalTokens(v string)

SetOriginalTokens sets OriginalTokens field to given value.

HasOriginalTokens

func (o *TokenFilterasciiFolding) HasOriginalTokens() bool

HasOriginalTokens returns a boolean if a field has been set.

GetType

func (o *TokenFilterasciiFolding) GetType() string

GetType returns the Type field if non-nil, zero value otherwise.

GetTypeOk

func (o *TokenFilterasciiFolding) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetType

func (o *TokenFilterasciiFolding) SetType(v string)

SetType sets Type field to given value.

[Back to Model list] [Back to API list] [Back to README]