| Name | Type | Description | Notes |
|---|---|---|---|
| Name | Pointer to string | The title of the task. | [optional] |
| Description | Pointer to NullableString | A string representing the description of the task. | [optional] |
| DueDate | Pointer to NullableString | Date when the task must be completed. | [optional] |
| Starred | Pointer to bool | Boolean if the task is starred. | [optional] |
| AssigneeId | Pointer to NullableInt32 | Unique identifier of the assigned user for the task. | [optional] |
| SubjectType | Pointer to NullableString | Type of the subject. | [optional] |
| SubjectId | Pointer to NullableInt32 | Identifier of the subject. | [optional] |
| Completed | Pointer to bool | Boolean representing the status of the task. The default value is false. | [optional] |
func NewUpdateTaskByIdRequest() *UpdateTaskByIdRequest
NewUpdateTaskByIdRequest instantiates a new UpdateTaskByIdRequest 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 NewUpdateTaskByIdRequestWithDefaults() *UpdateTaskByIdRequest
NewUpdateTaskByIdRequestWithDefaults instantiates a new UpdateTaskByIdRequest 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 *UpdateTaskByIdRequest) GetName() string
GetName returns the Name field if non-nil, zero value otherwise.
func (o *UpdateTaskByIdRequest) 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.
func (o *UpdateTaskByIdRequest) SetName(v string)
SetName sets Name field to given value.
func (o *UpdateTaskByIdRequest) HasName() bool
HasName returns a boolean if a field has been set.
func (o *UpdateTaskByIdRequest) GetDescription() string
GetDescription returns the Description field if non-nil, zero value otherwise.
func (o *UpdateTaskByIdRequest) 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.
func (o *UpdateTaskByIdRequest) SetDescription(v string)
SetDescription sets Description field to given value.
func (o *UpdateTaskByIdRequest) HasDescription() bool
HasDescription returns a boolean if a field has been set.
func (o *UpdateTaskByIdRequest) SetDescriptionNil(b bool)
SetDescriptionNil sets the value for Description to be an explicit nil
func (o *UpdateTaskByIdRequest) UnsetDescription()
UnsetDescription ensures that no value is present for Description, not even an explicit nil
func (o *UpdateTaskByIdRequest) GetDueDate() string
GetDueDate returns the DueDate field if non-nil, zero value otherwise.
func (o *UpdateTaskByIdRequest) GetDueDateOk() (*string, bool)
GetDueDateOk returns a tuple with the DueDate field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *UpdateTaskByIdRequest) SetDueDate(v string)
SetDueDate sets DueDate field to given value.
func (o *UpdateTaskByIdRequest) HasDueDate() bool
HasDueDate returns a boolean if a field has been set.
func (o *UpdateTaskByIdRequest) SetDueDateNil(b bool)
SetDueDateNil sets the value for DueDate to be an explicit nil
func (o *UpdateTaskByIdRequest) UnsetDueDate()
UnsetDueDate ensures that no value is present for DueDate, not even an explicit nil
func (o *UpdateTaskByIdRequest) GetStarred() bool
GetStarred returns the Starred field if non-nil, zero value otherwise.
func (o *UpdateTaskByIdRequest) GetStarredOk() (*bool, bool)
GetStarredOk returns a tuple with the Starred field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *UpdateTaskByIdRequest) SetStarred(v bool)
SetStarred sets Starred field to given value.
func (o *UpdateTaskByIdRequest) HasStarred() bool
HasStarred returns a boolean if a field has been set.
func (o *UpdateTaskByIdRequest) GetAssigneeId() int32
GetAssigneeId returns the AssigneeId field if non-nil, zero value otherwise.
func (o *UpdateTaskByIdRequest) GetAssigneeIdOk() (*int32, bool)
GetAssigneeIdOk returns a tuple with the AssigneeId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *UpdateTaskByIdRequest) SetAssigneeId(v int32)
SetAssigneeId sets AssigneeId field to given value.
func (o *UpdateTaskByIdRequest) HasAssigneeId() bool
HasAssigneeId returns a boolean if a field has been set.
func (o *UpdateTaskByIdRequest) SetAssigneeIdNil(b bool)
SetAssigneeIdNil sets the value for AssigneeId to be an explicit nil
func (o *UpdateTaskByIdRequest) UnsetAssigneeId()
UnsetAssigneeId ensures that no value is present for AssigneeId, not even an explicit nil
func (o *UpdateTaskByIdRequest) GetSubjectType() string
GetSubjectType returns the SubjectType field if non-nil, zero value otherwise.
func (o *UpdateTaskByIdRequest) GetSubjectTypeOk() (*string, bool)
GetSubjectTypeOk returns a tuple with the SubjectType field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *UpdateTaskByIdRequest) SetSubjectType(v string)
SetSubjectType sets SubjectType field to given value.
func (o *UpdateTaskByIdRequest) HasSubjectType() bool
HasSubjectType returns a boolean if a field has been set.
func (o *UpdateTaskByIdRequest) SetSubjectTypeNil(b bool)
SetSubjectTypeNil sets the value for SubjectType to be an explicit nil
func (o *UpdateTaskByIdRequest) UnsetSubjectType()
UnsetSubjectType ensures that no value is present for SubjectType, not even an explicit nil
func (o *UpdateTaskByIdRequest) GetSubjectId() int32
GetSubjectId returns the SubjectId field if non-nil, zero value otherwise.
func (o *UpdateTaskByIdRequest) GetSubjectIdOk() (*int32, bool)
GetSubjectIdOk returns a tuple with the SubjectId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *UpdateTaskByIdRequest) SetSubjectId(v int32)
SetSubjectId sets SubjectId field to given value.
func (o *UpdateTaskByIdRequest) HasSubjectId() bool
HasSubjectId returns a boolean if a field has been set.
func (o *UpdateTaskByIdRequest) SetSubjectIdNil(b bool)
SetSubjectIdNil sets the value for SubjectId to be an explicit nil
func (o *UpdateTaskByIdRequest) UnsetSubjectId()
UnsetSubjectId ensures that no value is present for SubjectId, not even an explicit nil
func (o *UpdateTaskByIdRequest) GetCompleted() bool
GetCompleted returns the Completed field if non-nil, zero value otherwise.
func (o *UpdateTaskByIdRequest) GetCompletedOk() (*bool, bool)
GetCompletedOk returns a tuple with the Completed field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *UpdateTaskByIdRequest) SetCompleted(v bool)
SetCompleted sets Completed field to given value.
func (o *UpdateTaskByIdRequest) HasCompleted() bool
HasCompleted returns a boolean if a field has been set.