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,16 +5,18 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Name** | **string** | |
**Type** | **string** | |
**IsActive** | **bool** | |
**Id** | **int32** | |
**Timetables** | [**[]Timetable**](Timetable.md) | |
**Timetables** | Pointer to [**[]Timetable**](Timetable.md) | | [optional] [default to {}]
**Oneshot** | Pointer to [**NullableOneShotAccessBase**](OneShotAccessBase.md) | | [optional]
**Groups** | [**[]GroupDB**](GroupDB.md) | |
## Methods
### NewAccessAuthorizationResponse
`func NewAccessAuthorizationResponse(name string, isActive bool, id int32, timetables []Timetable, groups []GroupDB, ) *AccessAuthorizationResponse`
`func NewAccessAuthorizationResponse(name string, type_ string, isActive bool, id int32, groups []GroupDB, ) *AccessAuthorizationResponse`
NewAccessAuthorizationResponse instantiates a new AccessAuthorizationResponse object
This constructor will assign default values to properties that have it defined,
@@ -49,6 +51,26 @@ and a boolean to check if the value has been set.
SetName sets Name field to given value.
### GetType
`func (o *AccessAuthorizationResponse) GetType() string`
GetType returns the Type field if non-nil, zero value otherwise.
### GetTypeOk
`func (o *AccessAuthorizationResponse) 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 *AccessAuthorizationResponse) SetType(v string)`
SetType sets Type field to given value.
### GetIsActive
`func (o *AccessAuthorizationResponse) GetIsActive() bool`
@@ -108,7 +130,47 @@ and a boolean to check if the value has been set.
SetTimetables sets Timetables field to given value.
### HasTimetables
`func (o *AccessAuthorizationResponse) HasTimetables() bool`
HasTimetables returns a boolean if a field has been set.
### GetOneshot
`func (o *AccessAuthorizationResponse) GetOneshot() OneShotAccessBase`
GetOneshot returns the Oneshot field if non-nil, zero value otherwise.
### GetOneshotOk
`func (o *AccessAuthorizationResponse) 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 *AccessAuthorizationResponse) SetOneshot(v OneShotAccessBase)`
SetOneshot sets Oneshot field to given value.
### HasOneshot
`func (o *AccessAuthorizationResponse) HasOneshot() bool`
HasOneshot returns a boolean if a field has been set.
### SetOneshotNil
`func (o *AccessAuthorizationResponse) SetOneshotNil(b bool)`
SetOneshotNil sets the value for Oneshot to be an explicit nil
### UnsetOneshot
`func (o *AccessAuthorizationResponse) UnsetOneshot()`
UnsetOneshot ensures that no value is present for Oneshot, not even an explicit nil
### GetGroups
`func (o *AccessAuthorizationResponse) GetGroups() []GroupDB`