Skip to content

Latest commit

 

History

History
124 lines (67 loc) · 3.2 KB

TaskStatus.md

File metadata and controls

124 lines (67 loc) · 3.2 KB

TaskStatus

Properties

Name Type Description Notes
Status string
StartedAt int64
FinishedAt Pointer to int64 [optional]
Details Pointer to map[string]interface{} [optional]

Methods

NewTaskStatus

func NewTaskStatus(status string, startedAt int64, ) *TaskStatus

NewTaskStatus instantiates a new TaskStatus 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

NewTaskStatusWithDefaults

func NewTaskStatusWithDefaults() *TaskStatus

NewTaskStatusWithDefaults instantiates a new TaskStatus 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

GetStatus

func (o *TaskStatus) GetStatus() string

GetStatus returns the Status field if non-nil, zero value otherwise.

GetStatusOk

func (o *TaskStatus) GetStatusOk() (*string, bool)

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

SetStatus

func (o *TaskStatus) SetStatus(v string)

SetStatus sets Status field to given value.

GetStartedAt

func (o *TaskStatus) GetStartedAt() int64

GetStartedAt returns the StartedAt field if non-nil, zero value otherwise.

GetStartedAtOk

func (o *TaskStatus) GetStartedAtOk() (*int64, bool)

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

SetStartedAt

func (o *TaskStatus) SetStartedAt(v int64)

SetStartedAt sets StartedAt field to given value.

GetFinishedAt

func (o *TaskStatus) GetFinishedAt() int64

GetFinishedAt returns the FinishedAt field if non-nil, zero value otherwise.

GetFinishedAtOk

func (o *TaskStatus) GetFinishedAtOk() (*int64, bool)

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

SetFinishedAt

func (o *TaskStatus) SetFinishedAt(v int64)

SetFinishedAt sets FinishedAt field to given value.

HasFinishedAt

func (o *TaskStatus) HasFinishedAt() bool

HasFinishedAt returns a boolean if a field has been set.

GetDetails

func (o *TaskStatus) GetDetails() map[string]interface{}

GetDetails returns the Details field if non-nil, zero value otherwise.

GetDetailsOk

func (o *TaskStatus) GetDetailsOk() (*map[string]interface{}, bool)

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

SetDetails

func (o *TaskStatus) SetDetails(v map[string]interface{})

SetDetails sets Details field to given value.

HasDetails

func (o *TaskStatus) HasDetails() bool

HasDetails returns a boolean if a field has been set.

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