Skip to content
This repository has been archived by the owner on Jul 18, 2023. It is now read-only.

Latest commit

 

History

History
129 lines (70 loc) · 3.51 KB

SelfServiceError.md

File metadata and controls

129 lines (70 loc) · 3.51 KB

SelfServiceError

Properties

Name Type Description Notes
CreatedAt Pointer to time.Time CreatedAt is a helper struct field for gobuffalo.pop. [optional]
Error Pointer to map[string]interface{} [optional]
Id string
UpdatedAt Pointer to time.Time UpdatedAt is a helper struct field for gobuffalo.pop. [optional]

Methods

NewSelfServiceError

func NewSelfServiceError(id string, ) *SelfServiceError

NewSelfServiceError instantiates a new SelfServiceError 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

NewSelfServiceErrorWithDefaults

func NewSelfServiceErrorWithDefaults() *SelfServiceError

NewSelfServiceErrorWithDefaults instantiates a new SelfServiceError 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

GetCreatedAt

func (o *SelfServiceError) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field if non-nil, zero value otherwise.

GetCreatedAtOk

func (o *SelfServiceError) GetCreatedAtOk() (*time.Time, bool)

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

SetCreatedAt

func (o *SelfServiceError) SetCreatedAt(v time.Time)

SetCreatedAt sets CreatedAt field to given value.

HasCreatedAt

func (o *SelfServiceError) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

GetError

func (o *SelfServiceError) GetError() map[string]interface{}

GetError returns the Error field if non-nil, zero value otherwise.

GetErrorOk

func (o *SelfServiceError) GetErrorOk() (*map[string]interface{}, bool)

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

SetError

func (o *SelfServiceError) SetError(v map[string]interface{})

SetError sets Error field to given value.

HasError

func (o *SelfServiceError) HasError() bool

HasError returns a boolean if a field has been set.

GetId

func (o *SelfServiceError) GetId() string

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

GetIdOk

func (o *SelfServiceError) GetIdOk() (*string, 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 *SelfServiceError) SetId(v string)

SetId sets Id field to given value.

GetUpdatedAt

func (o *SelfServiceError) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field if non-nil, zero value otherwise.

GetUpdatedAtOk

func (o *SelfServiceError) GetUpdatedAtOk() (*time.Time, bool)

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

SetUpdatedAt

func (o *SelfServiceError) SetUpdatedAt(v time.Time)

SetUpdatedAt sets UpdatedAt field to given value.

HasUpdatedAt

func (o *SelfServiceError) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

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