Files
opencloud/vendor/github.com/opencloud-eu/libre-graph-api-go/model_drive_update.go
Christian Richter 818490592f vendor changes
Signed-off-by: Christian Richter <c.richter@opencloud.eu>

# Conflicts:
#	go.mod
2025-07-04 12:04:23 +02:00

752 lines
20 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"
"time"
)
// checks if the DriveUpdate type satisfies the MappedNullable interface at compile time
var _ MappedNullable = &DriveUpdate{}
// DriveUpdate The drive represents an update to a space on the storage.
type DriveUpdate struct {
// The unique identifier for this drive.
Id *string `json:"id,omitempty"`
CreatedBy *IdentitySet `json:"createdBy,omitempty"`
// Date and time of item creation. Read-only.
CreatedDateTime *time.Time `json:"createdDateTime,omitempty" validate:"regexp=^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])[Tt]([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?([Zz]|[+-][0-9][0-9]:[0-9][0-9])$"`
// Provides a user-visible description of the item. Optional.
Description *string `json:"description,omitempty"`
// ETag for the item. Read-only.
ETag *string `json:"eTag,omitempty"`
LastModifiedBy *IdentitySet `json:"lastModifiedBy,omitempty"`
// Date and time the item was last modified. Read-only.
LastModifiedDateTime *time.Time `json:"lastModifiedDateTime,omitempty" validate:"regexp=^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])[Tt]([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?([Zz]|[+-][0-9][0-9]:[0-9][0-9])$"`
// The name of the item. Read-write.
Name *string `json:"name,omitempty"`
ParentReference *ItemReference `json:"parentReference,omitempty"`
// URL that displays the resource in the browser. Read-only.
WebUrl *string `json:"webUrl,omitempty"`
// Describes the type of drive represented by this resource. Values are \"personal\" for users home spaces, \"project\", \"virtual\" or \"share\". Read-only.
DriveType *string `json:"driveType,omitempty"`
// The drive alias can be used in clients to make the urls user friendly. Example: 'personal/einstein'. This will be used to resolve to the correct driveID.
DriveAlias *string `json:"driveAlias,omitempty"`
Owner *IdentitySet `json:"owner,omitempty"`
Quota *Quota `json:"quota,omitempty"`
// All items contained in the drive. Read-only. Nullable.
Items []DriveItem `json:"items,omitempty"`
Root *DriveItem `json:"root,omitempty"`
// A collection of special drive resources.
Special []DriveItem `json:"special,omitempty"`
// Indicates whether the drive has items in the trash. Read-only.
LibreGraphHasTrashedItems *bool `json:"@libre.graph.hasTrashedItems,omitempty"`
}
// NewDriveUpdate instantiates a new DriveUpdate 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 NewDriveUpdate() *DriveUpdate {
this := DriveUpdate{}
return &this
}
// NewDriveUpdateWithDefaults instantiates a new DriveUpdate 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 NewDriveUpdateWithDefaults() *DriveUpdate {
this := DriveUpdate{}
return &this
}
// GetId returns the Id field value if set, zero value otherwise.
func (o *DriveUpdate) GetId() string {
if o == nil || IsNil(o.Id) {
var ret string
return ret
}
return *o.Id
}
// GetIdOk returns a tuple with the Id field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *DriveUpdate) GetIdOk() (*string, bool) {
if o == nil || IsNil(o.Id) {
return nil, false
}
return o.Id, true
}
// HasId returns a boolean if a field has been set.
func (o *DriveUpdate) HasId() bool {
if o != nil && !IsNil(o.Id) {
return true
}
return false
}
// SetId gets a reference to the given string and assigns it to the Id field.
func (o *DriveUpdate) SetId(v string) {
o.Id = &v
}
// GetCreatedBy returns the CreatedBy field value if set, zero value otherwise.
func (o *DriveUpdate) GetCreatedBy() IdentitySet {
if o == nil || IsNil(o.CreatedBy) {
var ret IdentitySet
return ret
}
return *o.CreatedBy
}
// GetCreatedByOk returns a tuple with the CreatedBy field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *DriveUpdate) GetCreatedByOk() (*IdentitySet, bool) {
if o == nil || IsNil(o.CreatedBy) {
return nil, false
}
return o.CreatedBy, true
}
// HasCreatedBy returns a boolean if a field has been set.
func (o *DriveUpdate) HasCreatedBy() bool {
if o != nil && !IsNil(o.CreatedBy) {
return true
}
return false
}
// SetCreatedBy gets a reference to the given IdentitySet and assigns it to the CreatedBy field.
func (o *DriveUpdate) SetCreatedBy(v IdentitySet) {
o.CreatedBy = &v
}
// GetCreatedDateTime returns the CreatedDateTime field value if set, zero value otherwise.
func (o *DriveUpdate) GetCreatedDateTime() time.Time {
if o == nil || IsNil(o.CreatedDateTime) {
var ret time.Time
return ret
}
return *o.CreatedDateTime
}
// GetCreatedDateTimeOk returns a tuple with the CreatedDateTime field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *DriveUpdate) GetCreatedDateTimeOk() (*time.Time, bool) {
if o == nil || IsNil(o.CreatedDateTime) {
return nil, false
}
return o.CreatedDateTime, true
}
// HasCreatedDateTime returns a boolean if a field has been set.
func (o *DriveUpdate) HasCreatedDateTime() bool {
if o != nil && !IsNil(o.CreatedDateTime) {
return true
}
return false
}
// SetCreatedDateTime gets a reference to the given time.Time and assigns it to the CreatedDateTime field.
func (o *DriveUpdate) SetCreatedDateTime(v time.Time) {
o.CreatedDateTime = &v
}
// GetDescription returns the Description field value if set, zero value otherwise.
func (o *DriveUpdate) GetDescription() string {
if o == nil || IsNil(o.Description) {
var ret string
return ret
}
return *o.Description
}
// GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *DriveUpdate) GetDescriptionOk() (*string, bool) {
if o == nil || IsNil(o.Description) {
return nil, false
}
return o.Description, true
}
// HasDescription returns a boolean if a field has been set.
func (o *DriveUpdate) HasDescription() bool {
if o != nil && !IsNil(o.Description) {
return true
}
return false
}
// SetDescription gets a reference to the given string and assigns it to the Description field.
func (o *DriveUpdate) SetDescription(v string) {
o.Description = &v
}
// GetETag returns the ETag field value if set, zero value otherwise.
func (o *DriveUpdate) GetETag() string {
if o == nil || IsNil(o.ETag) {
var ret string
return ret
}
return *o.ETag
}
// GetETagOk returns a tuple with the ETag field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *DriveUpdate) GetETagOk() (*string, bool) {
if o == nil || IsNil(o.ETag) {
return nil, false
}
return o.ETag, true
}
// HasETag returns a boolean if a field has been set.
func (o *DriveUpdate) HasETag() bool {
if o != nil && !IsNil(o.ETag) {
return true
}
return false
}
// SetETag gets a reference to the given string and assigns it to the ETag field.
func (o *DriveUpdate) SetETag(v string) {
o.ETag = &v
}
// GetLastModifiedBy returns the LastModifiedBy field value if set, zero value otherwise.
func (o *DriveUpdate) GetLastModifiedBy() IdentitySet {
if o == nil || IsNil(o.LastModifiedBy) {
var ret IdentitySet
return ret
}
return *o.LastModifiedBy
}
// GetLastModifiedByOk returns a tuple with the LastModifiedBy field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *DriveUpdate) GetLastModifiedByOk() (*IdentitySet, bool) {
if o == nil || IsNil(o.LastModifiedBy) {
return nil, false
}
return o.LastModifiedBy, true
}
// HasLastModifiedBy returns a boolean if a field has been set.
func (o *DriveUpdate) HasLastModifiedBy() bool {
if o != nil && !IsNil(o.LastModifiedBy) {
return true
}
return false
}
// SetLastModifiedBy gets a reference to the given IdentitySet and assigns it to the LastModifiedBy field.
func (o *DriveUpdate) SetLastModifiedBy(v IdentitySet) {
o.LastModifiedBy = &v
}
// GetLastModifiedDateTime returns the LastModifiedDateTime field value if set, zero value otherwise.
func (o *DriveUpdate) GetLastModifiedDateTime() time.Time {
if o == nil || IsNil(o.LastModifiedDateTime) {
var ret time.Time
return ret
}
return *o.LastModifiedDateTime
}
// GetLastModifiedDateTimeOk returns a tuple with the LastModifiedDateTime field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *DriveUpdate) GetLastModifiedDateTimeOk() (*time.Time, bool) {
if o == nil || IsNil(o.LastModifiedDateTime) {
return nil, false
}
return o.LastModifiedDateTime, true
}
// HasLastModifiedDateTime returns a boolean if a field has been set.
func (o *DriveUpdate) HasLastModifiedDateTime() bool {
if o != nil && !IsNil(o.LastModifiedDateTime) {
return true
}
return false
}
// SetLastModifiedDateTime gets a reference to the given time.Time and assigns it to the LastModifiedDateTime field.
func (o *DriveUpdate) SetLastModifiedDateTime(v time.Time) {
o.LastModifiedDateTime = &v
}
// GetName returns the Name field value if set, zero value otherwise.
func (o *DriveUpdate) GetName() string {
if o == nil || IsNil(o.Name) {
var ret string
return ret
}
return *o.Name
}
// GetNameOk returns a tuple with the Name field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *DriveUpdate) GetNameOk() (*string, bool) {
if o == nil || IsNil(o.Name) {
return nil, false
}
return o.Name, true
}
// HasName returns a boolean if a field has been set.
func (o *DriveUpdate) HasName() bool {
if o != nil && !IsNil(o.Name) {
return true
}
return false
}
// SetName gets a reference to the given string and assigns it to the Name field.
func (o *DriveUpdate) SetName(v string) {
o.Name = &v
}
// GetParentReference returns the ParentReference field value if set, zero value otherwise.
func (o *DriveUpdate) GetParentReference() ItemReference {
if o == nil || IsNil(o.ParentReference) {
var ret ItemReference
return ret
}
return *o.ParentReference
}
// GetParentReferenceOk returns a tuple with the ParentReference field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *DriveUpdate) GetParentReferenceOk() (*ItemReference, bool) {
if o == nil || IsNil(o.ParentReference) {
return nil, false
}
return o.ParentReference, true
}
// HasParentReference returns a boolean if a field has been set.
func (o *DriveUpdate) HasParentReference() bool {
if o != nil && !IsNil(o.ParentReference) {
return true
}
return false
}
// SetParentReference gets a reference to the given ItemReference and assigns it to the ParentReference field.
func (o *DriveUpdate) SetParentReference(v ItemReference) {
o.ParentReference = &v
}
// GetWebUrl returns the WebUrl field value if set, zero value otherwise.
func (o *DriveUpdate) GetWebUrl() string {
if o == nil || IsNil(o.WebUrl) {
var ret string
return ret
}
return *o.WebUrl
}
// GetWebUrlOk returns a tuple with the WebUrl field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *DriveUpdate) GetWebUrlOk() (*string, bool) {
if o == nil || IsNil(o.WebUrl) {
return nil, false
}
return o.WebUrl, true
}
// HasWebUrl returns a boolean if a field has been set.
func (o *DriveUpdate) HasWebUrl() bool {
if o != nil && !IsNil(o.WebUrl) {
return true
}
return false
}
// SetWebUrl gets a reference to the given string and assigns it to the WebUrl field.
func (o *DriveUpdate) SetWebUrl(v string) {
o.WebUrl = &v
}
// GetDriveType returns the DriveType field value if set, zero value otherwise.
func (o *DriveUpdate) GetDriveType() string {
if o == nil || IsNil(o.DriveType) {
var ret string
return ret
}
return *o.DriveType
}
// GetDriveTypeOk returns a tuple with the DriveType field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *DriveUpdate) GetDriveTypeOk() (*string, bool) {
if o == nil || IsNil(o.DriveType) {
return nil, false
}
return o.DriveType, true
}
// HasDriveType returns a boolean if a field has been set.
func (o *DriveUpdate) HasDriveType() bool {
if o != nil && !IsNil(o.DriveType) {
return true
}
return false
}
// SetDriveType gets a reference to the given string and assigns it to the DriveType field.
func (o *DriveUpdate) SetDriveType(v string) {
o.DriveType = &v
}
// GetDriveAlias returns the DriveAlias field value if set, zero value otherwise.
func (o *DriveUpdate) GetDriveAlias() string {
if o == nil || IsNil(o.DriveAlias) {
var ret string
return ret
}
return *o.DriveAlias
}
// GetDriveAliasOk returns a tuple with the DriveAlias field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *DriveUpdate) GetDriveAliasOk() (*string, bool) {
if o == nil || IsNil(o.DriveAlias) {
return nil, false
}
return o.DriveAlias, true
}
// HasDriveAlias returns a boolean if a field has been set.
func (o *DriveUpdate) HasDriveAlias() bool {
if o != nil && !IsNil(o.DriveAlias) {
return true
}
return false
}
// SetDriveAlias gets a reference to the given string and assigns it to the DriveAlias field.
func (o *DriveUpdate) SetDriveAlias(v string) {
o.DriveAlias = &v
}
// GetOwner returns the Owner field value if set, zero value otherwise.
func (o *DriveUpdate) GetOwner() IdentitySet {
if o == nil || IsNil(o.Owner) {
var ret IdentitySet
return ret
}
return *o.Owner
}
// GetOwnerOk returns a tuple with the Owner field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *DriveUpdate) GetOwnerOk() (*IdentitySet, bool) {
if o == nil || IsNil(o.Owner) {
return nil, false
}
return o.Owner, true
}
// HasOwner returns a boolean if a field has been set.
func (o *DriveUpdate) HasOwner() bool {
if o != nil && !IsNil(o.Owner) {
return true
}
return false
}
// SetOwner gets a reference to the given IdentitySet and assigns it to the Owner field.
func (o *DriveUpdate) SetOwner(v IdentitySet) {
o.Owner = &v
}
// GetQuota returns the Quota field value if set, zero value otherwise.
func (o *DriveUpdate) GetQuota() Quota {
if o == nil || IsNil(o.Quota) {
var ret Quota
return ret
}
return *o.Quota
}
// GetQuotaOk returns a tuple with the Quota field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *DriveUpdate) GetQuotaOk() (*Quota, bool) {
if o == nil || IsNil(o.Quota) {
return nil, false
}
return o.Quota, true
}
// HasQuota returns a boolean if a field has been set.
func (o *DriveUpdate) HasQuota() bool {
if o != nil && !IsNil(o.Quota) {
return true
}
return false
}
// SetQuota gets a reference to the given Quota and assigns it to the Quota field.
func (o *DriveUpdate) SetQuota(v Quota) {
o.Quota = &v
}
// GetItems returns the Items field value if set, zero value otherwise.
func (o *DriveUpdate) GetItems() []DriveItem {
if o == nil || IsNil(o.Items) {
var ret []DriveItem
return ret
}
return o.Items
}
// GetItemsOk returns a tuple with the Items field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *DriveUpdate) GetItemsOk() ([]DriveItem, bool) {
if o == nil || IsNil(o.Items) {
return nil, false
}
return o.Items, true
}
// HasItems returns a boolean if a field has been set.
func (o *DriveUpdate) HasItems() bool {
if o != nil && !IsNil(o.Items) {
return true
}
return false
}
// SetItems gets a reference to the given []DriveItem and assigns it to the Items field.
func (o *DriveUpdate) SetItems(v []DriveItem) {
o.Items = v
}
// GetRoot returns the Root field value if set, zero value otherwise.
func (o *DriveUpdate) GetRoot() DriveItem {
if o == nil || IsNil(o.Root) {
var ret DriveItem
return ret
}
return *o.Root
}
// GetRootOk returns a tuple with the Root field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *DriveUpdate) GetRootOk() (*DriveItem, bool) {
if o == nil || IsNil(o.Root) {
return nil, false
}
return o.Root, true
}
// HasRoot returns a boolean if a field has been set.
func (o *DriveUpdate) HasRoot() bool {
if o != nil && !IsNil(o.Root) {
return true
}
return false
}
// SetRoot gets a reference to the given DriveItem and assigns it to the Root field.
func (o *DriveUpdate) SetRoot(v DriveItem) {
o.Root = &v
}
// GetSpecial returns the Special field value if set, zero value otherwise.
func (o *DriveUpdate) GetSpecial() []DriveItem {
if o == nil || IsNil(o.Special) {
var ret []DriveItem
return ret
}
return o.Special
}
// GetSpecialOk returns a tuple with the Special field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *DriveUpdate) GetSpecialOk() ([]DriveItem, bool) {
if o == nil || IsNil(o.Special) {
return nil, false
}
return o.Special, true
}
// HasSpecial returns a boolean if a field has been set.
func (o *DriveUpdate) HasSpecial() bool {
if o != nil && !IsNil(o.Special) {
return true
}
return false
}
// SetSpecial gets a reference to the given []DriveItem and assigns it to the Special field.
func (o *DriveUpdate) SetSpecial(v []DriveItem) {
o.Special = v
}
// GetLibreGraphHasTrashedItems returns the LibreGraphHasTrashedItems field value if set, zero value otherwise.
func (o *DriveUpdate) GetLibreGraphHasTrashedItems() bool {
if o == nil || IsNil(o.LibreGraphHasTrashedItems) {
var ret bool
return ret
}
return *o.LibreGraphHasTrashedItems
}
// GetLibreGraphHasTrashedItemsOk returns a tuple with the LibreGraphHasTrashedItems field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *DriveUpdate) GetLibreGraphHasTrashedItemsOk() (*bool, bool) {
if o == nil || IsNil(o.LibreGraphHasTrashedItems) {
return nil, false
}
return o.LibreGraphHasTrashedItems, true
}
// HasLibreGraphHasTrashedItems returns a boolean if a field has been set.
func (o *DriveUpdate) HasLibreGraphHasTrashedItems() bool {
if o != nil && !IsNil(o.LibreGraphHasTrashedItems) {
return true
}
return false
}
// SetLibreGraphHasTrashedItems gets a reference to the given bool and assigns it to the LibreGraphHasTrashedItems field.
func (o *DriveUpdate) SetLibreGraphHasTrashedItems(v bool) {
o.LibreGraphHasTrashedItems = &v
}
func (o DriveUpdate) MarshalJSON() ([]byte, error) {
toSerialize,err := o.ToMap()
if err != nil {
return []byte{}, err
}
return json.Marshal(toSerialize)
}
func (o DriveUpdate) ToMap() (map[string]interface{}, error) {
toSerialize := map[string]interface{}{}
if !IsNil(o.Id) {
toSerialize["id"] = o.Id
}
if !IsNil(o.CreatedBy) {
toSerialize["createdBy"] = o.CreatedBy
}
if !IsNil(o.CreatedDateTime) {
toSerialize["createdDateTime"] = o.CreatedDateTime
}
if !IsNil(o.Description) {
toSerialize["description"] = o.Description
}
if !IsNil(o.ETag) {
toSerialize["eTag"] = o.ETag
}
if !IsNil(o.LastModifiedBy) {
toSerialize["lastModifiedBy"] = o.LastModifiedBy
}
if !IsNil(o.LastModifiedDateTime) {
toSerialize["lastModifiedDateTime"] = o.LastModifiedDateTime
}
if !IsNil(o.Name) {
toSerialize["name"] = o.Name
}
if !IsNil(o.ParentReference) {
toSerialize["parentReference"] = o.ParentReference
}
if !IsNil(o.WebUrl) {
toSerialize["webUrl"] = o.WebUrl
}
if !IsNil(o.DriveType) {
toSerialize["driveType"] = o.DriveType
}
if !IsNil(o.DriveAlias) {
toSerialize["driveAlias"] = o.DriveAlias
}
if !IsNil(o.Owner) {
toSerialize["owner"] = o.Owner
}
if !IsNil(o.Quota) {
toSerialize["quota"] = o.Quota
}
if !IsNil(o.Items) {
toSerialize["items"] = o.Items
}
if !IsNil(o.Root) {
toSerialize["root"] = o.Root
}
if !IsNil(o.Special) {
toSerialize["special"] = o.Special
}
if !IsNil(o.LibreGraphHasTrashedItems) {
toSerialize["@libre.graph.hasTrashedItems"] = o.LibreGraphHasTrashedItems
}
return toSerialize, nil
}
type NullableDriveUpdate struct {
value *DriveUpdate
isSet bool
}
func (v NullableDriveUpdate) Get() *DriveUpdate {
return v.value
}
func (v *NullableDriveUpdate) Set(val *DriveUpdate) {
v.value = val
v.isSet = true
}
func (v NullableDriveUpdate) IsSet() bool {
return v.isSet
}
func (v *NullableDriveUpdate) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableDriveUpdate(val *DriveUpdate) *NullableDriveUpdate {
return &NullableDriveUpdate{value: val, isSet: true}
}
func (v NullableDriveUpdate) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableDriveUpdate) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}