Skip to content

Latest commit

 

History

History
134 lines (73 loc) · 3.57 KB

File metadata and controls

134 lines (73 loc) · 3.57 KB

ErrorSource

Properties

Name Type Description Notes
Pointer Pointer to string Pointer to the path in the payload that caused this error. [optional]
Parameter Pointer to string Query parameter that caused this error. [optional]
Line Pointer to string Line number in uploaded multipart file that caused this error. 'N/A' if unknown. [optional]
Resource Pointer to string Pointer to the resource that caused this error. [optional]

Methods

NewErrorSource

func NewErrorSource() *ErrorSource

NewErrorSource instantiates a new ErrorSource 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

NewErrorSourceWithDefaults

func NewErrorSourceWithDefaults() *ErrorSource

NewErrorSourceWithDefaults instantiates a new ErrorSource 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

GetPointer

func (o *ErrorSource) GetPointer() string

GetPointer returns the Pointer field if non-nil, zero value otherwise.

GetPointerOk

func (o *ErrorSource) GetPointerOk() (*string, bool)

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

SetPointer

func (o *ErrorSource) SetPointer(v string)

SetPointer sets Pointer field to given value.

HasPointer

func (o *ErrorSource) HasPointer() bool

HasPointer returns a boolean if a field has been set.

GetParameter

func (o *ErrorSource) GetParameter() string

GetParameter returns the Parameter field if non-nil, zero value otherwise.

GetParameterOk

func (o *ErrorSource) GetParameterOk() (*string, bool)

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

SetParameter

func (o *ErrorSource) SetParameter(v string)

SetParameter sets Parameter field to given value.

HasParameter

func (o *ErrorSource) HasParameter() bool

HasParameter returns a boolean if a field has been set.

GetLine

func (o *ErrorSource) GetLine() string

GetLine returns the Line field if non-nil, zero value otherwise.

GetLineOk

func (o *ErrorSource) GetLineOk() (*string, bool)

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

SetLine

func (o *ErrorSource) SetLine(v string)

SetLine sets Line field to given value.

HasLine

func (o *ErrorSource) HasLine() bool

HasLine returns a boolean if a field has been set.

GetResource

func (o *ErrorSource) GetResource() string

GetResource returns the Resource field if non-nil, zero value otherwise.

GetResourceOk

func (o *ErrorSource) GetResourceOk() (*string, bool)

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

SetResource

func (o *ErrorSource) SetResource(v string)

SetResource sets Resource field to given value.

HasResource

func (o *ErrorSource) HasResource() bool

HasResource returns a boolean if a field has been set.

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