mirror of
https://github.com/owncloud/ocis
synced 2026-04-26 01:35:25 +02:00
The user endpoint now returns the instances that the user is either a member or a guest of and the cross instance reference.
163 lines
3.8 KiB
Go
163 lines
3.8 KiB
Go
/*
|
|
Libre Graph API
|
|
|
|
Libre Graph is a free API for cloud collaboration inspired by the MS Graph API.
|
|
|
|
API version: v1.0.4
|
|
*/
|
|
|
|
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
|
|
|
|
package libregraph
|
|
|
|
import (
|
|
"encoding/json"
|
|
)
|
|
|
|
// checks if the Instance type satisfies the MappedNullable interface at compile time
|
|
var _ MappedNullable = &Instance{}
|
|
|
|
// Instance An oCIS instance that the user is either a member or a guest of.
|
|
type Instance struct {
|
|
// The URL of the oCIS instance.
|
|
Url *string `json:"url,omitempty"`
|
|
// Whether the instance is the user's primary instance.
|
|
Primary *bool `json:"primary,omitempty"`
|
|
}
|
|
|
|
// NewInstance instantiates a new Instance 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 NewInstance() *Instance {
|
|
this := Instance{}
|
|
return &this
|
|
}
|
|
|
|
// NewInstanceWithDefaults instantiates a new Instance 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 NewInstanceWithDefaults() *Instance {
|
|
this := Instance{}
|
|
return &this
|
|
}
|
|
|
|
// GetUrl returns the Url field value if set, zero value otherwise.
|
|
func (o *Instance) GetUrl() string {
|
|
if o == nil || IsNil(o.Url) {
|
|
var ret string
|
|
return ret
|
|
}
|
|
return *o.Url
|
|
}
|
|
|
|
// GetUrlOk returns a tuple with the Url field value if set, nil otherwise
|
|
// and a boolean to check if the value has been set.
|
|
func (o *Instance) GetUrlOk() (*string, bool) {
|
|
if o == nil || IsNil(o.Url) {
|
|
return nil, false
|
|
}
|
|
return o.Url, true
|
|
}
|
|
|
|
// HasUrl returns a boolean if a field has been set.
|
|
func (o *Instance) HasUrl() bool {
|
|
if o != nil && !IsNil(o.Url) {
|
|
return true
|
|
}
|
|
|
|
return false
|
|
}
|
|
|
|
// SetUrl gets a reference to the given string and assigns it to the Url field.
|
|
func (o *Instance) SetUrl(v string) {
|
|
o.Url = &v
|
|
}
|
|
|
|
// GetPrimary returns the Primary field value if set, zero value otherwise.
|
|
func (o *Instance) GetPrimary() bool {
|
|
if o == nil || IsNil(o.Primary) {
|
|
var ret bool
|
|
return ret
|
|
}
|
|
return *o.Primary
|
|
}
|
|
|
|
// GetPrimaryOk returns a tuple with the Primary field value if set, nil otherwise
|
|
// and a boolean to check if the value has been set.
|
|
func (o *Instance) GetPrimaryOk() (*bool, bool) {
|
|
if o == nil || IsNil(o.Primary) {
|
|
return nil, false
|
|
}
|
|
return o.Primary, true
|
|
}
|
|
|
|
// HasPrimary returns a boolean if a field has been set.
|
|
func (o *Instance) HasPrimary() bool {
|
|
if o != nil && !IsNil(o.Primary) {
|
|
return true
|
|
}
|
|
|
|
return false
|
|
}
|
|
|
|
// SetPrimary gets a reference to the given bool and assigns it to the Primary field.
|
|
func (o *Instance) SetPrimary(v bool) {
|
|
o.Primary = &v
|
|
}
|
|
|
|
func (o Instance) MarshalJSON() ([]byte, error) {
|
|
toSerialize, err := o.ToMap()
|
|
if err != nil {
|
|
return []byte{}, err
|
|
}
|
|
return json.Marshal(toSerialize)
|
|
}
|
|
|
|
func (o Instance) ToMap() (map[string]interface{}, error) {
|
|
toSerialize := map[string]interface{}{}
|
|
if !IsNil(o.Url) {
|
|
toSerialize["url"] = o.Url
|
|
}
|
|
if !IsNil(o.Primary) {
|
|
toSerialize["primary"] = o.Primary
|
|
}
|
|
return toSerialize, nil
|
|
}
|
|
|
|
type NullableInstance struct {
|
|
value *Instance
|
|
isSet bool
|
|
}
|
|
|
|
func (v NullableInstance) Get() *Instance {
|
|
return v.value
|
|
}
|
|
|
|
func (v *NullableInstance) Set(val *Instance) {
|
|
v.value = val
|
|
v.isSet = true
|
|
}
|
|
|
|
func (v NullableInstance) IsSet() bool {
|
|
return v.isSet
|
|
}
|
|
|
|
func (v *NullableInstance) Unset() {
|
|
v.value = nil
|
|
v.isSet = false
|
|
}
|
|
|
|
func NewNullableInstance(val *Instance) *NullableInstance {
|
|
return &NullableInstance{value: val, isSet: true}
|
|
}
|
|
|
|
func (v NullableInstance) MarshalJSON() ([]byte, error) {
|
|
return json.Marshal(v.value)
|
|
}
|
|
|
|
func (v *NullableInstance) UnmarshalJSON(src []byte) error {
|
|
v.isSet = true
|
|
return json.Unmarshal(src, &v.value)
|
|
}
|