Name | Type | Description | Notes |
---|---|---|---|
Type | Pointer to string | An absolute URI that identifies the problem type. When dereferenced, it SHOULD provide human-readable documentation for the problem type (e.g., using HTML). | [optional] [default to "about:blank"] |
Title | Pointer to string | A short, summary of the problem type. Written in english and readable for engineers (usually not suited for non technical stakeholders and not localized); example: Service Unavailable | [optional] |
Status | Pointer to int32 | The HTTP status code generated by the origin server for this occurrence of the problem. | [optional] |
Detail | Pointer to string | A human readable explanation specific to this occurrence of the problem. | [optional] |
Meta | Pointer to map[string]interface{} | Additional structured metadata about the error. | [optional] |
func NewProblem() *Problem
NewProblem instantiates a new Problem 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
func NewProblemWithDefaults() *Problem
NewProblemWithDefaults instantiates a new Problem 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
func (o *Problem) GetType() string
GetType returns the Type field if non-nil, zero value otherwise.
func (o *Problem) 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.
func (o *Problem) SetType(v string)
SetType sets Type field to given value.
func (o *Problem) HasType() bool
HasType returns a boolean if a field has been set.
func (o *Problem) GetTitle() string
GetTitle returns the Title field if non-nil, zero value otherwise.
func (o *Problem) GetTitleOk() (*string, bool)
GetTitleOk returns a tuple with the Title field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Problem) SetTitle(v string)
SetTitle sets Title field to given value.
func (o *Problem) HasTitle() bool
HasTitle returns a boolean if a field has been set.
func (o *Problem) GetStatus() int32
GetStatus returns the Status field if non-nil, zero value otherwise.
func (o *Problem) GetStatusOk() (*int32, 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.
func (o *Problem) SetStatus(v int32)
SetStatus sets Status field to given value.
func (o *Problem) HasStatus() bool
HasStatus returns a boolean if a field has been set.
func (o *Problem) GetDetail() string
GetDetail returns the Detail field if non-nil, zero value otherwise.
func (o *Problem) GetDetailOk() (*string, bool)
GetDetailOk returns a tuple with the Detail field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Problem) SetDetail(v string)
SetDetail sets Detail field to given value.
func (o *Problem) HasDetail() bool
HasDetail returns a boolean if a field has been set.
func (o *Problem) GetMeta() map[string]interface{}
GetMeta returns the Meta field if non-nil, zero value otherwise.
func (o *Problem) GetMetaOk() (*map[string]interface{}, 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.
func (o *Problem) SetMeta(v map[string]interface{})
SetMeta sets Meta field to given value.
func (o *Problem) HasMeta() bool
HasMeta returns a boolean if a field has been set.