Skip to content

Latest commit

 

History

History
190 lines (105 loc) · 5.66 KB

File metadata and controls

190 lines (105 loc) · 5.66 KB

BaseResponseAnalysisCreateResponse

Properties

Name Type Description Notes
Status Pointer to bool Response status on whether the request succeeded [optional] [default to true]
Data Pointer to NullableAnalysisCreateResponse [optional]
Message Pointer to NullableString [optional]
Errors Pointer to []ErrorModel [optional]
Meta Pointer to MetaModel Metadata [optional]

Methods

NewBaseResponseAnalysisCreateResponse

func NewBaseResponseAnalysisCreateResponse() *BaseResponseAnalysisCreateResponse

NewBaseResponseAnalysisCreateResponse instantiates a new BaseResponseAnalysisCreateResponse 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

NewBaseResponseAnalysisCreateResponseWithDefaults

func NewBaseResponseAnalysisCreateResponseWithDefaults() *BaseResponseAnalysisCreateResponse

NewBaseResponseAnalysisCreateResponseWithDefaults instantiates a new BaseResponseAnalysisCreateResponse 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 *BaseResponseAnalysisCreateResponse) GetStatus() bool

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

GetStatusOk

func (o *BaseResponseAnalysisCreateResponse) GetStatusOk() (*bool, 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 *BaseResponseAnalysisCreateResponse) SetStatus(v bool)

SetStatus sets Status field to given value.

HasStatus

func (o *BaseResponseAnalysisCreateResponse) HasStatus() bool

HasStatus returns a boolean if a field has been set.

GetData

func (o *BaseResponseAnalysisCreateResponse) GetData() AnalysisCreateResponse

GetData returns the Data field if non-nil, zero value otherwise.

GetDataOk

func (o *BaseResponseAnalysisCreateResponse) GetDataOk() (*AnalysisCreateResponse, bool)

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

SetData

func (o *BaseResponseAnalysisCreateResponse) SetData(v AnalysisCreateResponse)

SetData sets Data field to given value.

HasData

func (o *BaseResponseAnalysisCreateResponse) HasData() bool

HasData returns a boolean if a field has been set.

SetDataNil

func (o *BaseResponseAnalysisCreateResponse) SetDataNil(b bool)

SetDataNil sets the value for Data to be an explicit nil

UnsetData

func (o *BaseResponseAnalysisCreateResponse) UnsetData()

UnsetData ensures that no value is present for Data, not even an explicit nil

GetMessage

func (o *BaseResponseAnalysisCreateResponse) GetMessage() string

GetMessage returns the Message field if non-nil, zero value otherwise.

GetMessageOk

func (o *BaseResponseAnalysisCreateResponse) GetMessageOk() (*string, bool)

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

SetMessage

func (o *BaseResponseAnalysisCreateResponse) SetMessage(v string)

SetMessage sets Message field to given value.

HasMessage

func (o *BaseResponseAnalysisCreateResponse) HasMessage() bool

HasMessage returns a boolean if a field has been set.

SetMessageNil

func (o *BaseResponseAnalysisCreateResponse) SetMessageNil(b bool)

SetMessageNil sets the value for Message to be an explicit nil

UnsetMessage

func (o *BaseResponseAnalysisCreateResponse) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

GetErrors

func (o *BaseResponseAnalysisCreateResponse) GetErrors() []ErrorModel

GetErrors returns the Errors field if non-nil, zero value otherwise.

GetErrorsOk

func (o *BaseResponseAnalysisCreateResponse) GetErrorsOk() (*[]ErrorModel, bool)

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

SetErrors

func (o *BaseResponseAnalysisCreateResponse) SetErrors(v []ErrorModel)

SetErrors sets Errors field to given value.

HasErrors

func (o *BaseResponseAnalysisCreateResponse) HasErrors() bool

HasErrors returns a boolean if a field has been set.

SetErrorsNil

func (o *BaseResponseAnalysisCreateResponse) SetErrorsNil(b bool)

SetErrorsNil sets the value for Errors to be an explicit nil

UnsetErrors

func (o *BaseResponseAnalysisCreateResponse) UnsetErrors()

UnsetErrors ensures that no value is present for Errors, not even an explicit nil

GetMeta

func (o *BaseResponseAnalysisCreateResponse) GetMeta() MetaModel

GetMeta returns the Meta field if non-nil, zero value otherwise.

GetMetaOk

func (o *BaseResponseAnalysisCreateResponse) GetMetaOk() (*MetaModel, bool)

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

SetMeta

func (o *BaseResponseAnalysisCreateResponse) SetMeta(v MetaModel)

SetMeta sets Meta field to given value.

HasMeta

func (o *BaseResponseAnalysisCreateResponse) HasMeta() bool

HasMeta returns a boolean if a field has been set.

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