Skip to content

Latest commit

 

History

History
208 lines (111 loc) · 5.51 KB

File metadata and controls

208 lines (111 loc) · 5.51 KB

LinkedinJobListing

Properties

Name Type Description Notes
Id string
Title string
JobUrl string
ListedAt NullableString
IsPromoted bool
IsEasyApply bool
Location string
Company LinkedinJobListingCompany

Methods

NewLinkedinJobListing

func NewLinkedinJobListing(id string, title string, jobUrl string, listedAt NullableString, isPromoted bool, isEasyApply bool, location string, company LinkedinJobListingCompany, ) *LinkedinJobListing

NewLinkedinJobListing instantiates a new LinkedinJobListing 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

NewLinkedinJobListingWithDefaults

func NewLinkedinJobListingWithDefaults() *LinkedinJobListing

NewLinkedinJobListingWithDefaults instantiates a new LinkedinJobListing 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

GetId

func (o *LinkedinJobListing) GetId() string

GetId returns the Id field if non-nil, zero value otherwise.

GetIdOk

func (o *LinkedinJobListing) GetIdOk() (*string, bool)

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

SetId

func (o *LinkedinJobListing) SetId(v string)

SetId sets Id field to given value.

GetTitle

func (o *LinkedinJobListing) GetTitle() string

GetTitle returns the Title field if non-nil, zero value otherwise.

GetTitleOk

func (o *LinkedinJobListing) GetTitleOk() (*string, bool)

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

SetTitle

func (o *LinkedinJobListing) SetTitle(v string)

SetTitle sets Title field to given value.

GetJobUrl

func (o *LinkedinJobListing) GetJobUrl() string

GetJobUrl returns the JobUrl field if non-nil, zero value otherwise.

GetJobUrlOk

func (o *LinkedinJobListing) GetJobUrlOk() (*string, bool)

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

SetJobUrl

func (o *LinkedinJobListing) SetJobUrl(v string)

SetJobUrl sets JobUrl field to given value.

GetListedAt

func (o *LinkedinJobListing) GetListedAt() string

GetListedAt returns the ListedAt field if non-nil, zero value otherwise.

GetListedAtOk

func (o *LinkedinJobListing) GetListedAtOk() (*string, bool)

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

SetListedAt

func (o *LinkedinJobListing) SetListedAt(v string)

SetListedAt sets ListedAt field to given value.

SetListedAtNil

func (o *LinkedinJobListing) SetListedAtNil(b bool)

SetListedAtNil sets the value for ListedAt to be an explicit nil

UnsetListedAt

func (o *LinkedinJobListing) UnsetListedAt()

UnsetListedAt ensures that no value is present for ListedAt, not even an explicit nil

GetIsPromoted

func (o *LinkedinJobListing) GetIsPromoted() bool

GetIsPromoted returns the IsPromoted field if non-nil, zero value otherwise.

GetIsPromotedOk

func (o *LinkedinJobListing) GetIsPromotedOk() (*bool, bool)

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

SetIsPromoted

func (o *LinkedinJobListing) SetIsPromoted(v bool)

SetIsPromoted sets IsPromoted field to given value.

GetIsEasyApply

func (o *LinkedinJobListing) GetIsEasyApply() bool

GetIsEasyApply returns the IsEasyApply field if non-nil, zero value otherwise.

GetIsEasyApplyOk

func (o *LinkedinJobListing) GetIsEasyApplyOk() (*bool, bool)

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

SetIsEasyApply

func (o *LinkedinJobListing) SetIsEasyApply(v bool)

SetIsEasyApply sets IsEasyApply field to given value.

GetLocation

func (o *LinkedinJobListing) GetLocation() string

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

GetLocationOk

func (o *LinkedinJobListing) 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 *LinkedinJobListing) SetLocation(v string)

SetLocation sets Location field to given value.

GetCompany

func (o *LinkedinJobListing) GetCompany() LinkedinJobListingCompany

GetCompany returns the Company field if non-nil, zero value otherwise.

GetCompanyOk

func (o *LinkedinJobListing) GetCompanyOk() (*LinkedinJobListingCompany, bool)

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

SetCompany

func (o *LinkedinJobListing) SetCompany(v LinkedinJobListingCompany)

SetCompany sets Company field to given value.

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