mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2025-12-31 10:08:31 -05:00
165 lines
3.7 KiB
Go
165 lines
3.7 KiB
Go
/*
|
|
Libre Graph API
|
|
|
|
Libre Graph is a free API for cloud collaboration inspired by the MS Graph API.
|
|
|
|
API version: v1.0.8
|
|
*/
|
|
|
|
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
|
|
|
|
package libregraph
|
|
|
|
import (
|
|
"encoding/json"
|
|
)
|
|
|
|
// checks if the Image type satisfies the MappedNullable interface at compile time
|
|
var _ MappedNullable = &Image{}
|
|
|
|
// Image Image metadata, if the item is an image. Read-only.
|
|
type Image struct {
|
|
// Optional. Height of the image, in pixels. Read-only.
|
|
Height *int32 `json:"height,omitempty"`
|
|
// Optional. Width of the image, in pixels. Read-only.
|
|
Width *int32 `json:"width,omitempty"`
|
|
}
|
|
|
|
// NewImage instantiates a new Image 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 NewImage() *Image {
|
|
this := Image{}
|
|
return &this
|
|
}
|
|
|
|
// NewImageWithDefaults instantiates a new Image 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 NewImageWithDefaults() *Image {
|
|
this := Image{}
|
|
return &this
|
|
}
|
|
|
|
// GetHeight returns the Height field value if set, zero value otherwise.
|
|
func (o *Image) GetHeight() int32 {
|
|
if o == nil || IsNil(o.Height) {
|
|
var ret int32
|
|
return ret
|
|
}
|
|
return *o.Height
|
|
}
|
|
|
|
// GetHeightOk returns a tuple with the Height field value if set, nil otherwise
|
|
// and a boolean to check if the value has been set.
|
|
func (o *Image) GetHeightOk() (*int32, bool) {
|
|
if o == nil || IsNil(o.Height) {
|
|
return nil, false
|
|
}
|
|
return o.Height, true
|
|
}
|
|
|
|
// HasHeight returns a boolean if a field has been set.
|
|
func (o *Image) HasHeight() bool {
|
|
if o != nil && !IsNil(o.Height) {
|
|
return true
|
|
}
|
|
|
|
return false
|
|
}
|
|
|
|
// SetHeight gets a reference to the given int32 and assigns it to the Height field.
|
|
func (o *Image) SetHeight(v int32) {
|
|
o.Height = &v
|
|
}
|
|
|
|
// GetWidth returns the Width field value if set, zero value otherwise.
|
|
func (o *Image) GetWidth() int32 {
|
|
if o == nil || IsNil(o.Width) {
|
|
var ret int32
|
|
return ret
|
|
}
|
|
return *o.Width
|
|
}
|
|
|
|
// GetWidthOk returns a tuple with the Width field value if set, nil otherwise
|
|
// and a boolean to check if the value has been set.
|
|
func (o *Image) GetWidthOk() (*int32, bool) {
|
|
if o == nil || IsNil(o.Width) {
|
|
return nil, false
|
|
}
|
|
return o.Width, true
|
|
}
|
|
|
|
// HasWidth returns a boolean if a field has been set.
|
|
func (o *Image) HasWidth() bool {
|
|
if o != nil && !IsNil(o.Width) {
|
|
return true
|
|
}
|
|
|
|
return false
|
|
}
|
|
|
|
// SetWidth gets a reference to the given int32 and assigns it to the Width field.
|
|
func (o *Image) SetWidth(v int32) {
|
|
o.Width = &v
|
|
}
|
|
|
|
func (o Image) MarshalJSON() ([]byte, error) {
|
|
toSerialize,err := o.ToMap()
|
|
if err != nil {
|
|
return []byte{}, err
|
|
}
|
|
return json.Marshal(toSerialize)
|
|
}
|
|
|
|
func (o Image) ToMap() (map[string]interface{}, error) {
|
|
toSerialize := map[string]interface{}{}
|
|
if !IsNil(o.Height) {
|
|
toSerialize["height"] = o.Height
|
|
}
|
|
if !IsNil(o.Width) {
|
|
toSerialize["width"] = o.Width
|
|
}
|
|
return toSerialize, nil
|
|
}
|
|
|
|
type NullableImage struct {
|
|
value *Image
|
|
isSet bool
|
|
}
|
|
|
|
func (v NullableImage) Get() *Image {
|
|
return v.value
|
|
}
|
|
|
|
func (v *NullableImage) Set(val *Image) {
|
|
v.value = val
|
|
v.isSet = true
|
|
}
|
|
|
|
func (v NullableImage) IsSet() bool {
|
|
return v.isSet
|
|
}
|
|
|
|
func (v *NullableImage) Unset() {
|
|
v.value = nil
|
|
v.isSet = false
|
|
}
|
|
|
|
func NewNullableImage(val *Image) *NullableImage {
|
|
return &NullableImage{value: val, isSet: true}
|
|
}
|
|
|
|
func (v NullableImage) MarshalJSON() ([]byte, error) {
|
|
return json.Marshal(v.value)
|
|
}
|
|
|
|
func (v *NullableImage) UnmarshalJSON(src []byte) error {
|
|
v.isSet = true
|
|
return json.Unmarshal(src, &v.value)
|
|
}
|
|
|
|
|