Skip to content

Latest commit

 

History

History
103 lines (56 loc) · 3.03 KB

AsyncJobStatus.md

File metadata and controls

103 lines (56 loc) · 3.03 KB

AsyncJobStatus

Properties

Name Type Description Notes
Status string Whether or not the request is in progress (`InProgress`), has completed successfully (`Success`), or has completed with an error (`Failed`).
StatusMessage Pointer to string Additional status message generated if the status is not `Failed`. [optional]
Error Pointer to ErrorDescription [optional]

Methods

NewAsyncJobStatus

func NewAsyncJobStatus(status string, ) *AsyncJobStatus

NewAsyncJobStatus instantiates a new AsyncJobStatus 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

NewAsyncJobStatusWithDefaults

func NewAsyncJobStatusWithDefaults() *AsyncJobStatus

NewAsyncJobStatusWithDefaults instantiates a new AsyncJobStatus 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 *AsyncJobStatus) GetStatus() string

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

GetStatusOk

func (o *AsyncJobStatus) 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 *AsyncJobStatus) SetStatus(v string)

SetStatus sets Status field to given value.

GetStatusMessage

func (o *AsyncJobStatus) GetStatusMessage() string

GetStatusMessage returns the StatusMessage field if non-nil, zero value otherwise.

GetStatusMessageOk

func (o *AsyncJobStatus) GetStatusMessageOk() (*string, bool)

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

SetStatusMessage

func (o *AsyncJobStatus) SetStatusMessage(v string)

SetStatusMessage sets StatusMessage field to given value.

HasStatusMessage

func (o *AsyncJobStatus) HasStatusMessage() bool

HasStatusMessage returns a boolean if a field has been set.

GetError

func (o *AsyncJobStatus) GetError() ErrorDescription

GetError returns the Error field if non-nil, zero value otherwise.

GetErrorOk

func (o *AsyncJobStatus) GetErrorOk() (*ErrorDescription, bool)

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

SetError

func (o *AsyncJobStatus) SetError(v ErrorDescription)

SetError sets Error field to given value.

HasError

func (o *AsyncJobStatus) HasError() bool

HasError returns a boolean if a field has been set.

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