Skip to content

Latest commit

 

History

History
103 lines (56 loc) · 2.87 KB

File metadata and controls

103 lines (56 loc) · 2.87 KB

GeoMentionItem

Properties

Name Type Description Notes
Key string Domain, page URL, or aggregation label this row summarizes.
Mentions Pointer to float32 Total LLM mentions for this row, summed across platforms. [optional]
Breakdown Pointer to GeoMentionBreakdown [optional]

Methods

NewGeoMentionItem

func NewGeoMentionItem(key string, ) *GeoMentionItem

NewGeoMentionItem instantiates a new GeoMentionItem 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

NewGeoMentionItemWithDefaults

func NewGeoMentionItemWithDefaults() *GeoMentionItem

NewGeoMentionItemWithDefaults instantiates a new GeoMentionItem 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

GetKey

func (o *GeoMentionItem) GetKey() string

GetKey returns the Key field if non-nil, zero value otherwise.

GetKeyOk

func (o *GeoMentionItem) GetKeyOk() (*string, bool)

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

SetKey

func (o *GeoMentionItem) SetKey(v string)

SetKey sets Key field to given value.

GetMentions

func (o *GeoMentionItem) GetMentions() float32

GetMentions returns the Mentions field if non-nil, zero value otherwise.

GetMentionsOk

func (o *GeoMentionItem) GetMentionsOk() (*float32, bool)

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

SetMentions

func (o *GeoMentionItem) SetMentions(v float32)

SetMentions sets Mentions field to given value.

HasMentions

func (o *GeoMentionItem) HasMentions() bool

HasMentions returns a boolean if a field has been set.

GetBreakdown

func (o *GeoMentionItem) GetBreakdown() GeoMentionBreakdown

GetBreakdown returns the Breakdown field if non-nil, zero value otherwise.

GetBreakdownOk

func (o *GeoMentionItem) GetBreakdownOk() (*GeoMentionBreakdown, bool)

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

SetBreakdown

func (o *GeoMentionItem) SetBreakdown(v GeoMentionBreakdown)

SetBreakdown sets Breakdown field to given value.

HasBreakdown

func (o *GeoMentionItem) HasBreakdown() bool

HasBreakdown returns a boolean if a field has been set.

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