Skip to content

Latest commit

 

History

History
238 lines (129 loc) · 6.16 KB

Project.md

File metadata and controls

238 lines (129 loc) · 6.16 KB

Project

Properties

Name Type Description Notes
Synonyms Pointer to []string [optional]
Location Pointer to string [optional]
Geolocation Pointer to Geolocation [optional]
Description Pointer to string [optional]
External Pointer to bool true if project was done outside of the organization [optional] [default to false]
ErpId Pointer to string ID in the ERP system [optional]
ProjectType Pointer to ProjectType [optional]
Confidentiality Pointer to Confidentiality [optional]

Methods

NewProject

func NewProject() *Project

NewProject instantiates a new Project 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

NewProjectWithDefaults

func NewProjectWithDefaults() *Project

NewProjectWithDefaults instantiates a new Project 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

GetSynonyms

func (o *Project) GetSynonyms() []string

GetSynonyms returns the Synonyms field if non-nil, zero value otherwise.

GetSynonymsOk

func (o *Project) GetSynonymsOk() (*[]string, bool)

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

SetSynonyms

func (o *Project) SetSynonyms(v []string)

SetSynonyms sets Synonyms field to given value.

HasSynonyms

func (o *Project) HasSynonyms() bool

HasSynonyms returns a boolean if a field has been set.

GetLocation

func (o *Project) GetLocation() string

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

GetLocationOk

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

SetLocation sets Location field to given value.

HasLocation

func (o *Project) HasLocation() bool

HasLocation returns a boolean if a field has been set.

GetGeolocation

func (o *Project) GetGeolocation() Geolocation

GetGeolocation returns the Geolocation field if non-nil, zero value otherwise.

GetGeolocationOk

func (o *Project) GetGeolocationOk() (*Geolocation, bool)

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

SetGeolocation

func (o *Project) SetGeolocation(v Geolocation)

SetGeolocation sets Geolocation field to given value.

HasGeolocation

func (o *Project) HasGeolocation() bool

HasGeolocation returns a boolean if a field has been set.

GetDescription

func (o *Project) GetDescription() string

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

GetDescriptionOk

func (o *Project) 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 *Project) SetDescription(v string)

SetDescription sets Description field to given value.

HasDescription

func (o *Project) HasDescription() bool

HasDescription returns a boolean if a field has been set.

GetExternal

func (o *Project) GetExternal() bool

GetExternal returns the External field if non-nil, zero value otherwise.

GetExternalOk

func (o *Project) GetExternalOk() (*bool, bool)

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

SetExternal

func (o *Project) SetExternal(v bool)

SetExternal sets External field to given value.

HasExternal

func (o *Project) HasExternal() bool

HasExternal returns a boolean if a field has been set.

GetErpId

func (o *Project) GetErpId() string

GetErpId returns the ErpId field if non-nil, zero value otherwise.

GetErpIdOk

func (o *Project) GetErpIdOk() (*string, bool)

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

SetErpId

func (o *Project) SetErpId(v string)

SetErpId sets ErpId field to given value.

HasErpId

func (o *Project) HasErpId() bool

HasErpId returns a boolean if a field has been set.

GetProjectType

func (o *Project) GetProjectType() ProjectType

GetProjectType returns the ProjectType field if non-nil, zero value otherwise.

GetProjectTypeOk

func (o *Project) GetProjectTypeOk() (*ProjectType, bool)

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

SetProjectType

func (o *Project) SetProjectType(v ProjectType)

SetProjectType sets ProjectType field to given value.

HasProjectType

func (o *Project) HasProjectType() bool

HasProjectType returns a boolean if a field has been set.

GetConfidentiality

func (o *Project) GetConfidentiality() Confidentiality

GetConfidentiality returns the Confidentiality field if non-nil, zero value otherwise.

GetConfidentialityOk

func (o *Project) GetConfidentialityOk() (*Confidentiality, bool)

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

SetConfidentiality

func (o *Project) SetConfidentiality(v Confidentiality)

SetConfidentiality sets Confidentiality field to given value.

HasConfidentiality

func (o *Project) HasConfidentiality() bool

HasConfidentiality returns a boolean if a field has been set.

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