Skip to content

Latest commit

 

History

History
executable file
·
123 lines (68 loc) · 3.4 KB

ResponseErrorDetails.md

File metadata and controls

executable file
·
123 lines (68 loc) · 3.4 KB

ResponseErrorDetails

Properties

Name Type Description Notes
Type string Type or category of the error
Reason Pointer to NullableString Detailed explanation of why the error occurred [optional]
Table Pointer to NullableString The table related to the error, if applicable [optional]

Methods

NewResponseErrorDetails

func NewResponseErrorDetails(type_ string, ) *ResponseErrorDetails

NewResponseErrorDetails instantiates a new ResponseErrorDetails 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

NewResponseErrorDetailsWithDefaults

func NewResponseErrorDetailsWithDefaults() *ResponseErrorDetails

NewResponseErrorDetailsWithDefaults instantiates a new ResponseErrorDetails 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

GetType

func (o *ResponseErrorDetails) GetType() string

GetType returns the Type field if non-nil, zero value otherwise.

GetTypeOk

func (o *ResponseErrorDetails) 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.

SetType

func (o *ResponseErrorDetails) SetType(v string)

SetType sets Type field to given value.

GetReason

func (o *ResponseErrorDetails) GetReason() string

GetReason returns the Reason field if non-nil, zero value otherwise.

GetReasonOk

func (o *ResponseErrorDetails) GetReasonOk() (*string, bool)

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

SetReason

func (o *ResponseErrorDetails) SetReason(v string)

SetReason sets Reason field to given value.

HasReason

func (o *ResponseErrorDetails) HasReason() bool

HasReason returns a boolean if a field has been set.

SetReasonNil

func (o *ResponseErrorDetails) SetReasonNil(b bool)

SetReasonNil sets the value for Reason to be an explicit nil

UnsetReason

func (o *ResponseErrorDetails) UnsetReason()

UnsetReason ensures that no value is present for Reason, not even an explicit nil

GetTable

func (o *ResponseErrorDetails) GetTable() string

GetTable returns the Table field if non-nil, zero value otherwise.

GetTableOk

func (o *ResponseErrorDetails) GetTableOk() (*string, bool)

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

SetTable

func (o *ResponseErrorDetails) SetTable(v string)

SetTable sets Table field to given value.

HasTable

func (o *ResponseErrorDetails) HasTable() bool

HasTable returns a boolean if a field has been set.

SetTableNil

func (o *ResponseErrorDetails) SetTableNil(b bool)

SetTableNil sets the value for Table to be an explicit nil

UnsetTable

func (o *ResponseErrorDetails) UnsetTable()

UnsetTable ensures that no value is present for Table, not even an explicit nil

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