Skip to content

Latest commit

 

History

History
238 lines (129 loc) · 5.74 KB

File metadata and controls

238 lines (129 loc) · 5.74 KB

Error

Properties

Name Type Description Notes
Id Pointer to int64 A unique identifier for this error. [optional]
Percentage Pointer to float64 The percentage of views that experienced this error. [optional]
Notes Pointer to string Notes that are attached to this error. [optional]
Message Pointer to string The error message. [optional]
LastSeen Pointer to string The last time this error was seen (ISO 8601 timestamp). [optional]
Description Pointer to string Description of the error. [optional]
Count Pointer to int64 The total number of views that experiend this error. [optional]
Code Pointer to int64 The error code [optional]

Methods

NewError

func NewError() *Error

NewError instantiates a new Error 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

NewErrorWithDefaults

func NewErrorWithDefaults() *Error

NewErrorWithDefaults instantiates a new Error 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

GetId

func (o *Error) GetId() int64

GetId returns the Id field if non-nil, zero value otherwise.

GetIdOk

func (o *Error) GetIdOk() (*int64, bool)

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

SetId

func (o *Error) SetId(v int64)

SetId sets Id field to given value.

HasId

func (o *Error) HasId() bool

HasId returns a boolean if a field has been set.

GetPercentage

func (o *Error) GetPercentage() float64

GetPercentage returns the Percentage field if non-nil, zero value otherwise.

GetPercentageOk

func (o *Error) GetPercentageOk() (*float64, bool)

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

SetPercentage

func (o *Error) SetPercentage(v float64)

SetPercentage sets Percentage field to given value.

HasPercentage

func (o *Error) HasPercentage() bool

HasPercentage returns a boolean if a field has been set.

GetNotes

func (o *Error) GetNotes() string

GetNotes returns the Notes field if non-nil, zero value otherwise.

GetNotesOk

func (o *Error) GetNotesOk() (*string, bool)

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

SetNotes

func (o *Error) SetNotes(v string)

SetNotes sets Notes field to given value.

HasNotes

func (o *Error) HasNotes() bool

HasNotes returns a boolean if a field has been set.

GetMessage

func (o *Error) GetMessage() string

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

GetMessageOk

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

SetMessage sets Message field to given value.

HasMessage

func (o *Error) HasMessage() bool

HasMessage returns a boolean if a field has been set.

GetLastSeen

func (o *Error) GetLastSeen() string

GetLastSeen returns the LastSeen field if non-nil, zero value otherwise.

GetLastSeenOk

func (o *Error) GetLastSeenOk() (*string, bool)

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

SetLastSeen

func (o *Error) SetLastSeen(v string)

SetLastSeen sets LastSeen field to given value.

HasLastSeen

func (o *Error) HasLastSeen() bool

HasLastSeen returns a boolean if a field has been set.

GetDescription

func (o *Error) GetDescription() string

GetDescription returns the Description field if non-nil, zero value otherwise.

GetDescriptionOk

func (o *Error) GetDescriptionOk() (*string, bool)

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

SetDescription

func (o *Error) SetDescription(v string)

SetDescription sets Description field to given value.

HasDescription

func (o *Error) HasDescription() bool

HasDescription returns a boolean if a field has been set.

GetCount

func (o *Error) GetCount() int64

GetCount returns the Count field if non-nil, zero value otherwise.

GetCountOk

func (o *Error) GetCountOk() (*int64, bool)

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

SetCount

func (o *Error) SetCount(v int64)

SetCount sets Count field to given value.

HasCount

func (o *Error) HasCount() bool

HasCount returns a boolean if a field has been set.

GetCode

func (o *Error) GetCode() int64

GetCode returns the Code field if non-nil, zero value otherwise.

GetCodeOk

func (o *Error) GetCodeOk() (*int64, bool)

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

SetCode

func (o *Error) SetCode(v int64)

SetCode sets Code field to given value.

HasCode

func (o *Error) HasCode() bool

HasCode returns a boolean if a field has been set.

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