145 lines
3.0 KiB
Go
145 lines
3.0 KiB
Go
/*
|
|
Model Registry REST API
|
|
|
|
REST API for Model Registry to create and manage ML model metadata
|
|
|
|
API version: 1.0.0
|
|
*/
|
|
|
|
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
|
|
|
|
package openapi
|
|
|
|
import (
|
|
"encoding/json"
|
|
)
|
|
|
|
// checks if the Error type satisfies the MappedNullable interface at compile time
|
|
var _ MappedNullable = &Error{}
|
|
|
|
// Error Error code and message.
|
|
type Error struct {
|
|
// Error code
|
|
Code string `json:"code"`
|
|
// Error message
|
|
Message string `json:"message"`
|
|
}
|
|
|
|
// 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
|
|
func NewError(code string, message string) *Error {
|
|
this := Error{}
|
|
this.Code = code
|
|
this.Message = message
|
|
return &this
|
|
}
|
|
|
|
// 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
|
|
func NewErrorWithDefaults() *Error {
|
|
this := Error{}
|
|
return &this
|
|
}
|
|
|
|
// GetCode returns the Code field value
|
|
func (o *Error) GetCode() string {
|
|
if o == nil {
|
|
var ret string
|
|
return ret
|
|
}
|
|
|
|
return o.Code
|
|
}
|
|
|
|
// GetCodeOk returns a tuple with the Code field value
|
|
// and a boolean to check if the value has been set.
|
|
func (o *Error) GetCodeOk() (*string, bool) {
|
|
if o == nil {
|
|
return nil, false
|
|
}
|
|
return &o.Code, true
|
|
}
|
|
|
|
// SetCode sets field value
|
|
func (o *Error) SetCode(v string) {
|
|
o.Code = v
|
|
}
|
|
|
|
// GetMessage returns the Message field value
|
|
func (o *Error) GetMessage() string {
|
|
if o == nil {
|
|
var ret string
|
|
return ret
|
|
}
|
|
|
|
return o.Message
|
|
}
|
|
|
|
// GetMessageOk returns a tuple with the Message field value
|
|
// and a boolean to check if the value has been set.
|
|
func (o *Error) GetMessageOk() (*string, bool) {
|
|
if o == nil {
|
|
return nil, false
|
|
}
|
|
return &o.Message, true
|
|
}
|
|
|
|
// SetMessage sets field value
|
|
func (o *Error) SetMessage(v string) {
|
|
o.Message = v
|
|
}
|
|
|
|
func (o Error) MarshalJSON() ([]byte, error) {
|
|
toSerialize, err := o.ToMap()
|
|
if err != nil {
|
|
return []byte{}, err
|
|
}
|
|
return json.Marshal(toSerialize)
|
|
}
|
|
|
|
func (o Error) ToMap() (map[string]interface{}, error) {
|
|
toSerialize := map[string]interface{}{}
|
|
toSerialize["code"] = o.Code
|
|
toSerialize["message"] = o.Message
|
|
return toSerialize, nil
|
|
}
|
|
|
|
type NullableError struct {
|
|
value *Error
|
|
isSet bool
|
|
}
|
|
|
|
func (v NullableError) Get() *Error {
|
|
return v.value
|
|
}
|
|
|
|
func (v *NullableError) Set(val *Error) {
|
|
v.value = val
|
|
v.isSet = true
|
|
}
|
|
|
|
func (v NullableError) IsSet() bool {
|
|
return v.isSet
|
|
}
|
|
|
|
func (v *NullableError) Unset() {
|
|
v.value = nil
|
|
v.isSet = false
|
|
}
|
|
|
|
func NewNullableError(val *Error) *NullableError {
|
|
return &NullableError{value: val, isSet: true}
|
|
}
|
|
|
|
func (v NullableError) MarshalJSON() ([]byte, error) {
|
|
return json.Marshal(v.value)
|
|
}
|
|
|
|
func (v *NullableError) UnmarshalJSON(src []byte) error {
|
|
v.isSet = true
|
|
return json.Unmarshal(src, &v.value)
|
|
}
|