Name | Type | Description | Notes |
---|---|---|---|
Id | Pointer to string | The Job entity ID. | [optional] |
Status | Pointer to string | The status of the job. | [optional] |
Type | Pointer to string | The type of job being done. | [optional] |
ErrorDetails | Pointer to string | Details about the failure for FAILED jobs. | [optional] |
func NewJob() *Job
NewJob instantiates a new Job 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 NewJobWithDefaults() *Job
NewJobWithDefaults instantiates a new Job 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 *Job) GetId() string
GetId returns the Id field if non-nil, zero value otherwise.
func (o *Job) GetIdOk() (*string, 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.
func (o *Job) SetId(v string)
SetId sets Id field to given value.
func (o *Job) HasId() bool
HasId returns a boolean if a field has been set.
func (o *Job) GetStatus() string
GetStatus returns the Status field if non-nil, zero value otherwise.
func (o *Job) 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 *Job) SetStatus(v string)
SetStatus sets Status field to given value.
func (o *Job) HasStatus() bool
HasStatus returns a boolean if a field has been set.
func (o *Job) GetType() string
GetType returns the Type field if non-nil, zero value otherwise.
func (o *Job) GetTypeOk() (*string, bool)
GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Job) SetType(v string)
SetType sets Type field to given value.
func (o *Job) HasType() bool
HasType returns a boolean if a field has been set.
func (o *Job) GetErrorDetails() string
GetErrorDetails returns the ErrorDetails field if non-nil, zero value otherwise.
func (o *Job) GetErrorDetailsOk() (*string, bool)
GetErrorDetailsOk returns a tuple with the ErrorDetails field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Job) SetErrorDetails(v string)
SetErrorDetails sets ErrorDetails field to given value.
func (o *Job) HasErrorDetails() bool
HasErrorDetails returns a boolean if a field has been set.