Skip to content
This repository was archived by the owner on Jul 15, 2025. It is now read-only.

Latest commit

 

History

History
108 lines (59 loc) · 2.71 KB

File metadata and controls

108 lines (59 loc) · 2.71 KB

ErrorDto

Properties

Name Type Description Notes
Details Pointer to string [optional]
Message Pointer to string [optional]
Timestamp Pointer to time.Time [optional]

Methods

NewErrorDto

func NewErrorDto() *ErrorDto

NewErrorDto instantiates a new ErrorDto 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

NewErrorDtoWithDefaults

func NewErrorDtoWithDefaults() *ErrorDto

NewErrorDtoWithDefaults instantiates a new ErrorDto 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

GetDetails

func (o *ErrorDto) GetDetails() string

GetDetails returns the Details field if non-nil, zero value otherwise.

GetDetailsOk

func (o *ErrorDto) GetDetailsOk() (*string, 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.

SetDetails

func (o *ErrorDto) SetDetails(v string)

SetDetails sets Details field to given value.

HasDetails

func (o *ErrorDto) HasDetails() bool

HasDetails returns a boolean if a field has been set.

GetMessage

func (o *ErrorDto) GetMessage() string

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

GetMessageOk

func (o *ErrorDto) 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 *ErrorDto) SetMessage(v string)

SetMessage sets Message field to given value.

HasMessage

func (o *ErrorDto) HasMessage() bool

HasMessage returns a boolean if a field has been set.

GetTimestamp

func (o *ErrorDto) GetTimestamp() time.Time

GetTimestamp returns the Timestamp field if non-nil, zero value otherwise.

GetTimestampOk

func (o *ErrorDto) GetTimestampOk() (*time.Time, bool)

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

SetTimestamp

func (o *ErrorDto) SetTimestamp(v time.Time)

SetTimestamp sets Timestamp field to given value.

HasTimestamp

func (o *ErrorDto) HasTimestamp() bool

HasTimestamp returns a boolean if a field has been set.

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