udpate openapi spec

This commit is contained in:
2026-08-04 15:28:33 +02:00
parent e4acb6918a
commit fa7835c7e6
32 changed files with 2946 additions and 229 deletions

View File

@@ -5,8 +5,10 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Name** | Pointer to **NullableString** | | [optional]
**Type** | Pointer to **NullableString** | | [optional]
**IsActive** | Pointer to **NullableBool** | | [optional]
**Timetables** | Pointer to [**[]TimetableCreate**](TimetableCreate.md) | | [optional]
**Oneshot** | Pointer to [**NullableOneShotAccessBase**](OneShotAccessBase.md) | | [optional]
## Methods
@@ -62,6 +64,41 @@ HasName returns a boolean if a field has been set.
`func (o *AccessAuthorizationUpdate) UnsetName()`
UnsetName ensures that no value is present for Name, not even an explicit nil
### GetType
`func (o *AccessAuthorizationUpdate) GetType() string`
GetType returns the Type field if non-nil, zero value otherwise.
### GetTypeOk
`func (o *AccessAuthorizationUpdate) GetTypeOk() (*string, bool)`
GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetType
`func (o *AccessAuthorizationUpdate) SetType(v string)`
SetType sets Type field to given value.
### HasType
`func (o *AccessAuthorizationUpdate) HasType() bool`
HasType returns a boolean if a field has been set.
### SetTypeNil
`func (o *AccessAuthorizationUpdate) SetTypeNil(b bool)`
SetTypeNil sets the value for Type to be an explicit nil
### UnsetType
`func (o *AccessAuthorizationUpdate) UnsetType()`
UnsetType ensures that no value is present for Type, not even an explicit nil
### GetIsActive
`func (o *AccessAuthorizationUpdate) GetIsActive() bool`
@@ -132,6 +169,41 @@ HasTimetables returns a boolean if a field has been set.
`func (o *AccessAuthorizationUpdate) UnsetTimetables()`
UnsetTimetables ensures that no value is present for Timetables, not even an explicit nil
### GetOneshot
`func (o *AccessAuthorizationUpdate) GetOneshot() OneShotAccessBase`
GetOneshot returns the Oneshot field if non-nil, zero value otherwise.
### GetOneshotOk
`func (o *AccessAuthorizationUpdate) GetOneshotOk() (*OneShotAccessBase, bool)`
GetOneshotOk returns a tuple with the Oneshot field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetOneshot
`func (o *AccessAuthorizationUpdate) SetOneshot(v OneShotAccessBase)`
SetOneshot sets Oneshot field to given value.
### HasOneshot
`func (o *AccessAuthorizationUpdate) HasOneshot() bool`
HasOneshot returns a boolean if a field has been set.
### SetOneshotNil
`func (o *AccessAuthorizationUpdate) SetOneshotNil(b bool)`
SetOneshotNil sets the value for Oneshot to be an explicit nil
### UnsetOneshot
`func (o *AccessAuthorizationUpdate) UnsetOneshot()`
UnsetOneshot ensures that no value is present for Oneshot, not even an explicit nil
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)