Skip to content

Latest commit

 

History

History
229 lines (122 loc) · 6.08 KB

File metadata and controls

229 lines (122 loc) · 6.08 KB

LinkedinJobCompany

Properties

Name Type Description Notes
Id string
Name string
UniversalName NullableString
Url string
Description string
FollowerCount int32
StaffCount int32
Industries []string
LogoUrl string

Methods

NewLinkedinJobCompany

func NewLinkedinJobCompany(id string, name string, universalName NullableString, url string, description string, followerCount int32, staffCount int32, industries []string, logoUrl string, ) *LinkedinJobCompany

NewLinkedinJobCompany instantiates a new LinkedinJobCompany 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

NewLinkedinJobCompanyWithDefaults

func NewLinkedinJobCompanyWithDefaults() *LinkedinJobCompany

NewLinkedinJobCompanyWithDefaults instantiates a new LinkedinJobCompany 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 *LinkedinJobCompany) GetId() string

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

GetIdOk

func (o *LinkedinJobCompany) 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 *LinkedinJobCompany) SetId(v string)

SetId sets Id field to given value.

GetName

func (o *LinkedinJobCompany) GetName() string

GetName returns the Name field if non-nil, zero value otherwise.

GetNameOk

func (o *LinkedinJobCompany) GetNameOk() (*string, bool)

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

SetName

func (o *LinkedinJobCompany) SetName(v string)

SetName sets Name field to given value.

GetUniversalName

func (o *LinkedinJobCompany) GetUniversalName() string

GetUniversalName returns the UniversalName field if non-nil, zero value otherwise.

GetUniversalNameOk

func (o *LinkedinJobCompany) GetUniversalNameOk() (*string, bool)

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

SetUniversalName

func (o *LinkedinJobCompany) SetUniversalName(v string)

SetUniversalName sets UniversalName field to given value.

SetUniversalNameNil

func (o *LinkedinJobCompany) SetUniversalNameNil(b bool)

SetUniversalNameNil sets the value for UniversalName to be an explicit nil

UnsetUniversalName

func (o *LinkedinJobCompany) UnsetUniversalName()

UnsetUniversalName ensures that no value is present for UniversalName, not even an explicit nil

GetUrl

func (o *LinkedinJobCompany) GetUrl() string

GetUrl returns the Url field if non-nil, zero value otherwise.

GetUrlOk

func (o *LinkedinJobCompany) GetUrlOk() (*string, bool)

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

SetUrl

func (o *LinkedinJobCompany) SetUrl(v string)

SetUrl sets Url field to given value.

GetDescription

func (o *LinkedinJobCompany) GetDescription() string

GetDescription returns the Description field if non-nil, zero value otherwise.

GetDescriptionOk

func (o *LinkedinJobCompany) GetDescriptionOk() (*string, bool)

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

SetDescription

func (o *LinkedinJobCompany) SetDescription(v string)

SetDescription sets Description field to given value.

GetFollowerCount

func (o *LinkedinJobCompany) GetFollowerCount() int32

GetFollowerCount returns the FollowerCount field if non-nil, zero value otherwise.

GetFollowerCountOk

func (o *LinkedinJobCompany) GetFollowerCountOk() (*int32, bool)

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

SetFollowerCount

func (o *LinkedinJobCompany) SetFollowerCount(v int32)

SetFollowerCount sets FollowerCount field to given value.

GetStaffCount

func (o *LinkedinJobCompany) GetStaffCount() int32

GetStaffCount returns the StaffCount field if non-nil, zero value otherwise.

GetStaffCountOk

func (o *LinkedinJobCompany) GetStaffCountOk() (*int32, bool)

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

SetStaffCount

func (o *LinkedinJobCompany) SetStaffCount(v int32)

SetStaffCount sets StaffCount field to given value.

GetIndustries

func (o *LinkedinJobCompany) GetIndustries() []string

GetIndustries returns the Industries field if non-nil, zero value otherwise.

GetIndustriesOk

func (o *LinkedinJobCompany) GetIndustriesOk() (*[]string, bool)

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

SetIndustries

func (o *LinkedinJobCompany) SetIndustries(v []string)

SetIndustries sets Industries field to given value.

GetLogoUrl

func (o *LinkedinJobCompany) GetLogoUrl() string

GetLogoUrl returns the LogoUrl field if non-nil, zero value otherwise.

GetLogoUrlOk

func (o *LinkedinJobCompany) GetLogoUrlOk() (*string, bool)

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

SetLogoUrl

func (o *LinkedinJobCompany) SetLogoUrl(v string)

SetLogoUrl sets LogoUrl field to given value.

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