sdk-go-zincsearch/docs/MetaMatchPhraseQuery.md
2022-06-24 13:04:50 +08:00

2.9 KiB

MetaMatchPhraseQuery

Properties

Name Type Description Notes
Analyzer Pointer to string [optional]
Boost Pointer to float32 [optional]
Query Pointer to string [optional]

Methods

NewMetaMatchPhraseQuery

func NewMetaMatchPhraseQuery() *MetaMatchPhraseQuery

NewMetaMatchPhraseQuery instantiates a new MetaMatchPhraseQuery 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

NewMetaMatchPhraseQueryWithDefaults

func NewMetaMatchPhraseQueryWithDefaults() *MetaMatchPhraseQuery

NewMetaMatchPhraseQueryWithDefaults instantiates a new MetaMatchPhraseQuery 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

GetAnalyzer

func (o *MetaMatchPhraseQuery) GetAnalyzer() string

GetAnalyzer returns the Analyzer field if non-nil, zero value otherwise.

GetAnalyzerOk

func (o *MetaMatchPhraseQuery) GetAnalyzerOk() (*string, bool)

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

SetAnalyzer

func (o *MetaMatchPhraseQuery) SetAnalyzer(v string)

SetAnalyzer sets Analyzer field to given value.

HasAnalyzer

func (o *MetaMatchPhraseQuery) HasAnalyzer() bool

HasAnalyzer returns a boolean if a field has been set.

GetBoost

func (o *MetaMatchPhraseQuery) GetBoost() float32

GetBoost returns the Boost field if non-nil, zero value otherwise.

GetBoostOk

func (o *MetaMatchPhraseQuery) GetBoostOk() (*float32, bool)

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

SetBoost

func (o *MetaMatchPhraseQuery) SetBoost(v float32)

SetBoost sets Boost field to given value.

HasBoost

func (o *MetaMatchPhraseQuery) HasBoost() bool

HasBoost returns a boolean if a field has been set.

GetQuery

func (o *MetaMatchPhraseQuery) GetQuery() string

GetQuery returns the Query field if non-nil, zero value otherwise.

GetQueryOk

func (o *MetaMatchPhraseQuery) GetQueryOk() (*string, bool)

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

SetQuery

func (o *MetaMatchPhraseQuery) SetQuery(v string)

SetQuery sets Query field to given value.

HasQuery

func (o *MetaMatchPhraseQuery) HasQuery() bool

HasQuery returns a boolean if a field has been set.

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