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,14 +5,17 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | Pointer to **NullableInt32** | | [optional]
**Uuid** | **string** | |
**Key** | **string** | |
**CardSerial** | **string** | |
**Enabled** | Pointer to **bool** | | [optional] [default to true]
**Name** | **string** | |
**GroupId** | Pointer to **NullableInt32** | | [optional]
## Methods
### NewCard
`func NewCard(uuid string, ) *Card`
`func NewCard(key string, cardSerial string, name string, ) *Card`
NewCard instantiates a new Card object
This constructor will assign default values to properties that have it defined,
@@ -62,24 +65,89 @@ HasId returns a boolean if a field has been set.
`func (o *Card) UnsetId()`
UnsetId ensures that no value is present for Id, not even an explicit nil
### GetUuid
### GetKey
`func (o *Card) GetUuid() string`
`func (o *Card) GetKey() string`
GetUuid returns the Uuid field if non-nil, zero value otherwise.
GetKey returns the Key field if non-nil, zero value otherwise.
### GetUuidOk
### GetKeyOk
`func (o *Card) GetUuidOk() (*string, bool)`
`func (o *Card) GetKeyOk() (*string, bool)`
GetUuidOk returns a tuple with the Uuid field if it's non-nil, zero value otherwise
GetKeyOk returns a tuple with the Key field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetUuid
### SetKey
`func (o *Card) SetUuid(v string)`
`func (o *Card) SetKey(v string)`
SetUuid sets Uuid field to given value.
SetKey sets Key field to given value.
### GetCardSerial
`func (o *Card) GetCardSerial() string`
GetCardSerial returns the CardSerial field if non-nil, zero value otherwise.
### GetCardSerialOk
`func (o *Card) GetCardSerialOk() (*string, bool)`
GetCardSerialOk returns a tuple with the CardSerial field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetCardSerial
`func (o *Card) SetCardSerial(v string)`
SetCardSerial sets CardSerial field to given value.
### GetEnabled
`func (o *Card) GetEnabled() bool`
GetEnabled returns the Enabled field if non-nil, zero value otherwise.
### GetEnabledOk
`func (o *Card) GetEnabledOk() (*bool, bool)`
GetEnabledOk returns a tuple with the Enabled field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetEnabled
`func (o *Card) SetEnabled(v bool)`
SetEnabled sets Enabled field to given value.
### HasEnabled
`func (o *Card) HasEnabled() bool`
HasEnabled returns a boolean if a field has been set.
### GetName
`func (o *Card) GetName() string`
GetName returns the Name field if non-nil, zero value otherwise.
### GetNameOk
`func (o *Card) GetNameOk() (*string, bool)`
GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetName
`func (o *Card) SetName(v string)`
SetName sets Name field to given value.
### GetGroupId