| 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. |
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
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
func (o *SeoBacklinksListResponse) GetTarget() string
GetTarget returns the Target field if non-nil, zero value otherwise.
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.
func (o *SeoBacklinksListResponse) SetTarget(v string)
SetTarget sets Target field to given value.
func (o *SeoBacklinksListResponse) GetView() SeoBacklinksView
GetView returns the View field if non-nil, zero value otherwise.
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.
func (o *SeoBacklinksListResponse) SetView(v SeoBacklinksView)
SetView sets View field to given value.
func (o *SeoBacklinksListResponse) GetMode() string
GetMode returns the Mode field if non-nil, zero value otherwise.
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.
func (o *SeoBacklinksListResponse) SetMode(v string)
SetMode sets Mode field to given value.
func (o *SeoBacklinksListResponse) HasMode() bool
HasMode returns a boolean if a field has been set.
func (o *SeoBacklinksListResponse) GetTotalCount() int32
GetTotalCount returns the TotalCount field if non-nil, zero value otherwise.
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.
func (o *SeoBacklinksListResponse) SetTotalCount(v int32)
SetTotalCount sets TotalCount field to given value.
func (o *SeoBacklinksListResponse) HasTotalCount() bool
HasTotalCount returns a boolean if a field has been set.
func (o *SeoBacklinksListResponse) GetSearchAfterToken() string
GetSearchAfterToken returns the SearchAfterToken field if non-nil, zero value otherwise.
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.
func (o *SeoBacklinksListResponse) SetSearchAfterToken(v string)
SetSearchAfterToken sets SearchAfterToken field to given value.
func (o *SeoBacklinksListResponse) HasSearchAfterToken() bool
HasSearchAfterToken returns a boolean if a field has been set.
func (o *SeoBacklinksListResponse) GetResults() []SeoBacklinkItem
GetResults returns the Results field if non-nil, zero value otherwise.
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.
func (o *SeoBacklinksListResponse) SetResults(v []SeoBacklinkItem)
SetResults sets Results field to given value.