Skip to content

Latest commit

 

History

History
118 lines (65 loc) · 3.64 KB

DryRunGeneral.md

File metadata and controls

118 lines (65 loc) · 3.64 KB

DryRunGeneral

Properties

Name Type Description Notes
Identifier Pointer to string Unique identifier (textual or numeric) of resources [optional]
StatusCode Pointer to int32 The status code expecting when actually perform the operation. Some values are - 200: updated (ok) - 201: created - 204: deleted (no content) - 304: unchanged (not modified) - 400: problem (bad request) - 404: not found - 409: duplicated (conflict) - 422: unprocessable [optional]
ErrorMessage Pointer to NullableString The error message expecting when actually perform the operation. [optional]

Methods

NewDryRunGeneral

func NewDryRunGeneral() *DryRunGeneral

NewDryRunGeneral instantiates a new DryRunGeneral 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

NewDryRunGeneralWithDefaults

func NewDryRunGeneralWithDefaults() *DryRunGeneral

NewDryRunGeneralWithDefaults instantiates a new DryRunGeneral 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

GetIdentifier

func (o *DryRunGeneral) GetIdentifier() string

GetIdentifier returns the Identifier field if non-nil, zero value otherwise.

GetIdentifierOk

func (o *DryRunGeneral) GetIdentifierOk() (*string, bool)

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

SetIdentifier

func (o *DryRunGeneral) SetIdentifier(v string)

SetIdentifier sets Identifier field to given value.

HasIdentifier

func (o *DryRunGeneral) HasIdentifier() bool

HasIdentifier returns a boolean if a field has been set.

GetStatusCode

func (o *DryRunGeneral) GetStatusCode() int32

GetStatusCode returns the StatusCode field if non-nil, zero value otherwise.

GetStatusCodeOk

func (o *DryRunGeneral) GetStatusCodeOk() (*int32, bool)

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

SetStatusCode

func (o *DryRunGeneral) SetStatusCode(v int32)

SetStatusCode sets StatusCode field to given value.

HasStatusCode

func (o *DryRunGeneral) HasStatusCode() bool

HasStatusCode returns a boolean if a field has been set.

GetErrorMessage

func (o *DryRunGeneral) GetErrorMessage() string

GetErrorMessage returns the ErrorMessage field if non-nil, zero value otherwise.

GetErrorMessageOk

func (o *DryRunGeneral) GetErrorMessageOk() (*string, bool)

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

SetErrorMessage

func (o *DryRunGeneral) SetErrorMessage(v string)

SetErrorMessage sets ErrorMessage field to given value.

HasErrorMessage

func (o *DryRunGeneral) HasErrorMessage() bool

HasErrorMessage returns a boolean if a field has been set.

SetErrorMessageNil

func (o *DryRunGeneral) SetErrorMessageNil(b bool)

SetErrorMessageNil sets the value for ErrorMessage to be an explicit nil

UnsetErrorMessage

func (o *DryRunGeneral) UnsetErrorMessage()

UnsetErrorMessage ensures that no value is present for ErrorMessage, not even an explicit nil

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