Skip to content

Latest commit

 

History

History
213 lines (114 loc) · 6.24 KB

File metadata and controls

213 lines (114 loc) · 6.24 KB

SeoKeywordIdeasResponse

Properties

Name Type Description Notes
SeedKeywords []string Seed keywords echoed from the request.
Location string
Language string
View SeoKeywordView
TotalCount Pointer to int32 Total number of keyword ideas available for the request in DataForSEO's database. [optional]
Offset Pointer to int32 Offset applied to the results. [optional]
OffsetToken Pointer to string Pass this token as offset_token to fetch the next page of ideas. [optional]
Results []SeoKeywordItem Keyword ideas with search volume, competition, difficulty, and intent. Each keyword is one billable record.

Methods

NewSeoKeywordIdeasResponse

func NewSeoKeywordIdeasResponse(seedKeywords []string, location string, language string, view SeoKeywordView, results []SeoKeywordItem, ) *SeoKeywordIdeasResponse

NewSeoKeywordIdeasResponse instantiates a new SeoKeywordIdeasResponse 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

NewSeoKeywordIdeasResponseWithDefaults

func NewSeoKeywordIdeasResponseWithDefaults() *SeoKeywordIdeasResponse

NewSeoKeywordIdeasResponseWithDefaults instantiates a new SeoKeywordIdeasResponse 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

GetSeedKeywords

func (o *SeoKeywordIdeasResponse) GetSeedKeywords() []string

GetSeedKeywords returns the SeedKeywords field if non-nil, zero value otherwise.

GetSeedKeywordsOk

func (o *SeoKeywordIdeasResponse) GetSeedKeywordsOk() (*[]string, bool)

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

SetSeedKeywords

func (o *SeoKeywordIdeasResponse) SetSeedKeywords(v []string)

SetSeedKeywords sets SeedKeywords field to given value.

GetLocation

func (o *SeoKeywordIdeasResponse) GetLocation() string

GetLocation returns the Location field if non-nil, zero value otherwise.

GetLocationOk

func (o *SeoKeywordIdeasResponse) GetLocationOk() (*string, bool)

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

SetLocation

func (o *SeoKeywordIdeasResponse) SetLocation(v string)

SetLocation sets Location field to given value.

GetLanguage

func (o *SeoKeywordIdeasResponse) GetLanguage() string

GetLanguage returns the Language field if non-nil, zero value otherwise.

GetLanguageOk

func (o *SeoKeywordIdeasResponse) GetLanguageOk() (*string, bool)

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

SetLanguage

func (o *SeoKeywordIdeasResponse) SetLanguage(v string)

SetLanguage sets Language field to given value.

GetView

func (o *SeoKeywordIdeasResponse) GetView() SeoKeywordView

GetView returns the View field if non-nil, zero value otherwise.

GetViewOk

func (o *SeoKeywordIdeasResponse) GetViewOk() (*SeoKeywordView, bool)

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

SetView

func (o *SeoKeywordIdeasResponse) SetView(v SeoKeywordView)

SetView sets View field to given value.

GetTotalCount

func (o *SeoKeywordIdeasResponse) GetTotalCount() int32

GetTotalCount returns the TotalCount field if non-nil, zero value otherwise.

GetTotalCountOk

func (o *SeoKeywordIdeasResponse) GetTotalCountOk() (*int32, bool)

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

SetTotalCount

func (o *SeoKeywordIdeasResponse) SetTotalCount(v int32)

SetTotalCount sets TotalCount field to given value.

HasTotalCount

func (o *SeoKeywordIdeasResponse) HasTotalCount() bool

HasTotalCount returns a boolean if a field has been set.

GetOffset

func (o *SeoKeywordIdeasResponse) GetOffset() int32

GetOffset returns the Offset field if non-nil, zero value otherwise.

GetOffsetOk

func (o *SeoKeywordIdeasResponse) GetOffsetOk() (*int32, bool)

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

SetOffset

func (o *SeoKeywordIdeasResponse) SetOffset(v int32)

SetOffset sets Offset field to given value.

HasOffset

func (o *SeoKeywordIdeasResponse) HasOffset() bool

HasOffset returns a boolean if a field has been set.

GetOffsetToken

func (o *SeoKeywordIdeasResponse) GetOffsetToken() string

GetOffsetToken returns the OffsetToken field if non-nil, zero value otherwise.

GetOffsetTokenOk

func (o *SeoKeywordIdeasResponse) GetOffsetTokenOk() (*string, bool)

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

SetOffsetToken

func (o *SeoKeywordIdeasResponse) SetOffsetToken(v string)

SetOffsetToken sets OffsetToken field to given value.

HasOffsetToken

func (o *SeoKeywordIdeasResponse) HasOffsetToken() bool

HasOffsetToken returns a boolean if a field has been set.

GetResults

func (o *SeoKeywordIdeasResponse) GetResults() []SeoKeywordItem

GetResults returns the Results field if non-nil, zero value otherwise.

GetResultsOk

func (o *SeoKeywordIdeasResponse) GetResultsOk() (*[]SeoKeywordItem, bool)

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

SetResults

func (o *SeoKeywordIdeasResponse) SetResults(v []SeoKeywordItem)

SetResults sets Results field to given value.

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