Skip to content

Latest commit

 

History

History
171 lines (92 loc) · 5.13 KB

File metadata and controls

171 lines (92 loc) · 5.13 KB

SeoBacklinksListResponse

Properties

Name Type Description Notes
Target string Target echoed from the request.
View SeoBacklinksView
Mode Pointer to string Result grouping applied to the backlinks. [optional]
TotalCount Pointer to int32 Total number of backlinks available in DataForSEO's database. [optional]
SearchAfterToken Pointer to string Token to pass as search_after_token to fetch the next page of backlinks. [optional]
Results []SeoBacklinkItem Individual backlinks pointing to the target. Each backlink is one billable record.

Methods

NewSeoBacklinksListResponse

func NewSeoBacklinksListResponse(target string, view SeoBacklinksView, results []SeoBacklinkItem, ) *SeoBacklinksListResponse

NewSeoBacklinksListResponse instantiates a new SeoBacklinksListResponse 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

NewSeoBacklinksListResponseWithDefaults

func NewSeoBacklinksListResponseWithDefaults() *SeoBacklinksListResponse

NewSeoBacklinksListResponseWithDefaults instantiates a new SeoBacklinksListResponse 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

GetTarget

func (o *SeoBacklinksListResponse) GetTarget() string

GetTarget returns the Target field if non-nil, zero value otherwise.

GetTargetOk

func (o *SeoBacklinksListResponse) GetTargetOk() (*string, bool)

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

SetTarget

func (o *SeoBacklinksListResponse) SetTarget(v string)

SetTarget sets Target field to given value.

GetView

func (o *SeoBacklinksListResponse) GetView() SeoBacklinksView

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

GetViewOk

func (o *SeoBacklinksListResponse) GetViewOk() (*SeoBacklinksView, 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 *SeoBacklinksListResponse) SetView(v SeoBacklinksView)

SetView sets View field to given value.

GetMode

func (o *SeoBacklinksListResponse) GetMode() string

GetMode returns the Mode field if non-nil, zero value otherwise.

GetModeOk

func (o *SeoBacklinksListResponse) GetModeOk() (*string, bool)

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

SetMode

func (o *SeoBacklinksListResponse) SetMode(v string)

SetMode sets Mode field to given value.

HasMode

func (o *SeoBacklinksListResponse) HasMode() bool

HasMode returns a boolean if a field has been set.

GetTotalCount

func (o *SeoBacklinksListResponse) GetTotalCount() int32

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

GetTotalCountOk

func (o *SeoBacklinksListResponse) 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 *SeoBacklinksListResponse) SetTotalCount(v int32)

SetTotalCount sets TotalCount field to given value.

HasTotalCount

func (o *SeoBacklinksListResponse) HasTotalCount() bool

HasTotalCount returns a boolean if a field has been set.

GetSearchAfterToken

func (o *SeoBacklinksListResponse) GetSearchAfterToken() string

GetSearchAfterToken returns the SearchAfterToken field if non-nil, zero value otherwise.

GetSearchAfterTokenOk

func (o *SeoBacklinksListResponse) GetSearchAfterTokenOk() (*string, bool)

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

SetSearchAfterToken

func (o *SeoBacklinksListResponse) SetSearchAfterToken(v string)

SetSearchAfterToken sets SearchAfterToken field to given value.

HasSearchAfterToken

func (o *SeoBacklinksListResponse) HasSearchAfterToken() bool

HasSearchAfterToken returns a boolean if a field has been set.

GetResults

func (o *SeoBacklinksListResponse) GetResults() []SeoBacklinkItem

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

GetResultsOk

func (o *SeoBacklinksListResponse) GetResultsOk() (*[]SeoBacklinkItem, 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 *SeoBacklinksListResponse) SetResults(v []SeoBacklinkItem)

SetResults sets Results field to given value.

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