Name | Type | Description | Notes |
---|---|---|---|
Status | string | ||
StartedAt | int64 | ||
FinishedAt | Pointer to int64 | [optional] | |
Details | Pointer to map[string]interface{} | [optional] |
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
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
func (o *TaskStatus) GetStatus() string
GetStatus returns the Status field if non-nil, zero value otherwise.
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.
func (o *TaskStatus) SetStatus(v string)
SetStatus sets Status field to given value.
func (o *TaskStatus) GetStartedAt() int64
GetStartedAt returns the StartedAt field if non-nil, zero value otherwise.
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.
func (o *TaskStatus) SetStartedAt(v int64)
SetStartedAt sets StartedAt field to given value.
func (o *TaskStatus) GetFinishedAt() int64
GetFinishedAt returns the FinishedAt field if non-nil, zero value otherwise.
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.
func (o *TaskStatus) SetFinishedAt(v int64)
SetFinishedAt sets FinishedAt field to given value.
func (o *TaskStatus) HasFinishedAt() bool
HasFinishedAt returns a boolean if a field has been set.
func (o *TaskStatus) GetDetails() map[string]interface{}
GetDetails returns the Details field if non-nil, zero value otherwise.
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.
func (o *TaskStatus) SetDetails(v map[string]interface{})
SetDetails sets Details field to given value.
func (o *TaskStatus) HasDetails() bool
HasDetails returns a boolean if a field has been set.