Skip to content

Latest commit

 

History

History
181 lines (98 loc) · 5.16 KB

File metadata and controls

181 lines (98 loc) · 5.16 KB

SeoKeywordHistoryPoint

Properties

Name Type Description Notes
Year int32 Year of the data point.
Month Pointer to int32 Month of the data point (1-12). [optional]
SearchVolume Pointer to int32 Average monthly search volume. [optional]
Cpc Pointer to float32 Average cost-per-click in USD. [optional]
Competition Pointer to float32 Google Ads competition index between 0 and 1. [optional]
CompetitionLevel Pointer to string Google Ads competition level: LOW, MEDIUM, or HIGH. [optional]

Methods

NewSeoKeywordHistoryPoint

func NewSeoKeywordHistoryPoint(year int32, ) *SeoKeywordHistoryPoint

NewSeoKeywordHistoryPoint instantiates a new SeoKeywordHistoryPoint 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

NewSeoKeywordHistoryPointWithDefaults

func NewSeoKeywordHistoryPointWithDefaults() *SeoKeywordHistoryPoint

NewSeoKeywordHistoryPointWithDefaults instantiates a new SeoKeywordHistoryPoint 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

GetYear

func (o *SeoKeywordHistoryPoint) GetYear() int32

GetYear returns the Year field if non-nil, zero value otherwise.

GetYearOk

func (o *SeoKeywordHistoryPoint) GetYearOk() (*int32, bool)

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

SetYear

func (o *SeoKeywordHistoryPoint) SetYear(v int32)

SetYear sets Year field to given value.

GetMonth

func (o *SeoKeywordHistoryPoint) GetMonth() int32

GetMonth returns the Month field if non-nil, zero value otherwise.

GetMonthOk

func (o *SeoKeywordHistoryPoint) GetMonthOk() (*int32, bool)

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

SetMonth

func (o *SeoKeywordHistoryPoint) SetMonth(v int32)

SetMonth sets Month field to given value.

HasMonth

func (o *SeoKeywordHistoryPoint) HasMonth() bool

HasMonth returns a boolean if a field has been set.

GetSearchVolume

func (o *SeoKeywordHistoryPoint) GetSearchVolume() int32

GetSearchVolume returns the SearchVolume field if non-nil, zero value otherwise.

GetSearchVolumeOk

func (o *SeoKeywordHistoryPoint) GetSearchVolumeOk() (*int32, bool)

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

SetSearchVolume

func (o *SeoKeywordHistoryPoint) SetSearchVolume(v int32)

SetSearchVolume sets SearchVolume field to given value.

HasSearchVolume

func (o *SeoKeywordHistoryPoint) HasSearchVolume() bool

HasSearchVolume returns a boolean if a field has been set.

GetCpc

func (o *SeoKeywordHistoryPoint) GetCpc() float32

GetCpc returns the Cpc field if non-nil, zero value otherwise.

GetCpcOk

func (o *SeoKeywordHistoryPoint) GetCpcOk() (*float32, bool)

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

SetCpc

func (o *SeoKeywordHistoryPoint) SetCpc(v float32)

SetCpc sets Cpc field to given value.

HasCpc

func (o *SeoKeywordHistoryPoint) HasCpc() bool

HasCpc returns a boolean if a field has been set.

GetCompetition

func (o *SeoKeywordHistoryPoint) GetCompetition() float32

GetCompetition returns the Competition field if non-nil, zero value otherwise.

GetCompetitionOk

func (o *SeoKeywordHistoryPoint) GetCompetitionOk() (*float32, bool)

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

SetCompetition

func (o *SeoKeywordHistoryPoint) SetCompetition(v float32)

SetCompetition sets Competition field to given value.

HasCompetition

func (o *SeoKeywordHistoryPoint) HasCompetition() bool

HasCompetition returns a boolean if a field has been set.

GetCompetitionLevel

func (o *SeoKeywordHistoryPoint) GetCompetitionLevel() string

GetCompetitionLevel returns the CompetitionLevel field if non-nil, zero value otherwise.

GetCompetitionLevelOk

func (o *SeoKeywordHistoryPoint) GetCompetitionLevelOk() (*string, bool)

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

SetCompetitionLevel

func (o *SeoKeywordHistoryPoint) SetCompetitionLevel(v string)

SetCompetitionLevel sets CompetitionLevel field to given value.

HasCompetitionLevel

func (o *SeoKeywordHistoryPoint) HasCompetitionLevel() bool

HasCompetitionLevel returns a boolean if a field has been set.

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