Skip to content

Latest commit

 

History

History
160 lines (87 loc) · 3.8 KB

File metadata and controls

160 lines (87 loc) · 3.8 KB

Project

Properties

Name Type Description Notes
Id Pointer to int32 [optional]
Name Pointer to string [optional]
Created Pointer to string [optional]
Alert Pointer to bool [optional]
MaxParallelTasks Pointer to int32 [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

GetId

func (o *Project) GetId() int32

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

GetIdOk

func (o *Project) GetIdOk() (*int32, 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 *Project) SetId(v int32)

SetId sets Id field to given value.

HasId

func (o *Project) HasId() bool

HasId returns a boolean if a field has been set.

GetName

func (o *Project) GetName() string

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

GetNameOk

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

SetName sets Name field to given value.

HasName

func (o *Project) HasName() bool

HasName returns a boolean if a field has been set.

GetCreated

func (o *Project) GetCreated() string

GetCreated returns the Created field if non-nil, zero value otherwise.

GetCreatedOk

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

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

SetCreated

func (o *Project) SetCreated(v string)

SetCreated sets Created field to given value.

HasCreated

func (o *Project) HasCreated() bool

HasCreated returns a boolean if a field has been set.

GetAlert

func (o *Project) GetAlert() bool

GetAlert returns the Alert field if non-nil, zero value otherwise.

GetAlertOk

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

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

SetAlert

func (o *Project) SetAlert(v bool)

SetAlert sets Alert field to given value.

HasAlert

func (o *Project) HasAlert() bool

HasAlert returns a boolean if a field has been set.

GetMaxParallelTasks

func (o *Project) GetMaxParallelTasks() int32

GetMaxParallelTasks returns the MaxParallelTasks field if non-nil, zero value otherwise.

GetMaxParallelTasksOk

func (o *Project) GetMaxParallelTasksOk() (*int32, bool)

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

SetMaxParallelTasks

func (o *Project) SetMaxParallelTasks(v int32)

SetMaxParallelTasks sets MaxParallelTasks field to given value.

HasMaxParallelTasks

func (o *Project) HasMaxParallelTasks() bool

HasMaxParallelTasks returns a boolean if a field has been set.

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