peridot/vendor/github.com/ory/hydra-client-go/v2/model_is_ready_200_response.go
Mustafa Gezen ad0f7a5305
Major upgrades
Upgrade to Go 1.20.5, Hydra v2 SDK, rules-go v0.44.2 (with proper resolves), protobuf v25.3 and mass upgrade of Go dependencies.
2024-03-17 08:06:08 +01:00

158 lines
3.8 KiB
Go

/*
Ory Hydra API
Documentation for all of Ory Hydra's APIs.
API version: v2.2.0
Contact: hi@ory.sh
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package client
import (
"encoding/json"
)
// checks if the IsReady200Response type satisfies the MappedNullable interface at compile time
var _ MappedNullable = &IsReady200Response{}
// IsReady200Response struct for IsReady200Response
type IsReady200Response struct {
// Always \"ok\".
Status *string `json:"status,omitempty"`
AdditionalProperties map[string]interface{}
}
type _IsReady200Response IsReady200Response
// NewIsReady200Response instantiates a new IsReady200Response 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 NewIsReady200Response() *IsReady200Response {
this := IsReady200Response{}
return &this
}
// NewIsReady200ResponseWithDefaults instantiates a new IsReady200Response 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 NewIsReady200ResponseWithDefaults() *IsReady200Response {
this := IsReady200Response{}
return &this
}
// GetStatus returns the Status field value if set, zero value otherwise.
func (o *IsReady200Response) GetStatus() string {
if o == nil || IsNil(o.Status) {
var ret string
return ret
}
return *o.Status
}
// GetStatusOk returns a tuple with the Status field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *IsReady200Response) GetStatusOk() (*string, bool) {
if o == nil || IsNil(o.Status) {
return nil, false
}
return o.Status, true
}
// HasStatus returns a boolean if a field has been set.
func (o *IsReady200Response) HasStatus() bool {
if o != nil && !IsNil(o.Status) {
return true
}
return false
}
// SetStatus gets a reference to the given string and assigns it to the Status field.
func (o *IsReady200Response) SetStatus(v string) {
o.Status = &v
}
func (o IsReady200Response) MarshalJSON() ([]byte, error) {
toSerialize,err := o.ToMap()
if err != nil {
return []byte{}, err
}
return json.Marshal(toSerialize)
}
func (o IsReady200Response) ToMap() (map[string]interface{}, error) {
toSerialize := map[string]interface{}{}
if !IsNil(o.Status) {
toSerialize["status"] = o.Status
}
for key, value := range o.AdditionalProperties {
toSerialize[key] = value
}
return toSerialize, nil
}
func (o *IsReady200Response) UnmarshalJSON(bytes []byte) (err error) {
varIsReady200Response := _IsReady200Response{}
err = json.Unmarshal(bytes, &varIsReady200Response)
if err != nil {
return err
}
*o = IsReady200Response(varIsReady200Response)
additionalProperties := make(map[string]interface{})
if err = json.Unmarshal(bytes, &additionalProperties); err == nil {
delete(additionalProperties, "status")
o.AdditionalProperties = additionalProperties
}
return err
}
type NullableIsReady200Response struct {
value *IsReady200Response
isSet bool
}
func (v NullableIsReady200Response) Get() *IsReady200Response {
return v.value
}
func (v *NullableIsReady200Response) Set(val *IsReady200Response) {
v.value = val
v.isSet = true
}
func (v NullableIsReady200Response) IsSet() bool {
return v.isSet
}
func (v *NullableIsReady200Response) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableIsReady200Response(val *IsReady200Response) *NullableIsReady200Response {
return &NullableIsReady200Response{value: val, isSet: true}
}
func (v NullableIsReady200Response) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableIsReady200Response) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}