Files
portal/openapi/docs/GroupResponse.md
2026-06-22 11:38:29 +02:00

135 lines
3.5 KiB
Markdown

# GroupResponse
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Name** | **string** | |
**Id** | **int32** | |
**Cards** | [**[]Card**](Card.md) | |
**Accessauths** | [**[]AccessAuthorizationDB**](AccessAuthorizationDB.md) | |
## Methods
### NewGroupResponse
`func NewGroupResponse(name string, id int32, cards []Card, accessauths []AccessAuthorizationDB, ) *GroupResponse`
NewGroupResponse instantiates a new GroupResponse 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
### NewGroupResponseWithDefaults
`func NewGroupResponseWithDefaults() *GroupResponse`
NewGroupResponseWithDefaults instantiates a new GroupResponse 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
### GetName
`func (o *GroupResponse) GetName() string`
GetName returns the Name field if non-nil, zero value otherwise.
### GetNameOk
`func (o *GroupResponse) 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 *GroupResponse) SetName(v string)`
SetName sets Name field to given value.
### GetId
`func (o *GroupResponse) GetId() int32`
GetId returns the Id field if non-nil, zero value otherwise.
### GetIdOk
`func (o *GroupResponse) GetIdOk() (*int32, bool)`
GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetId
`func (o *GroupResponse) SetId(v int32)`
SetId sets Id field to given value.
### GetCards
`func (o *GroupResponse) GetCards() []Card`
GetCards returns the Cards field if non-nil, zero value otherwise.
### GetCardsOk
`func (o *GroupResponse) GetCardsOk() (*[]Card, bool)`
GetCardsOk returns a tuple with the Cards field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetCards
`func (o *GroupResponse) SetCards(v []Card)`
SetCards sets Cards field to given value.
### SetCardsNil
`func (o *GroupResponse) SetCardsNil(b bool)`
SetCardsNil sets the value for Cards to be an explicit nil
### UnsetCards
`func (o *GroupResponse) UnsetCards()`
UnsetCards ensures that no value is present for Cards, not even an explicit nil
### GetAccessauths
`func (o *GroupResponse) GetAccessauths() []AccessAuthorizationDB`
GetAccessauths returns the Accessauths field if non-nil, zero value otherwise.
### GetAccessauthsOk
`func (o *GroupResponse) GetAccessauthsOk() (*[]AccessAuthorizationDB, bool)`
GetAccessauthsOk returns a tuple with the Accessauths field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetAccessauths
`func (o *GroupResponse) SetAccessauths(v []AccessAuthorizationDB)`
SetAccessauths sets Accessauths field to given value.
### SetAccessauthsNil
`func (o *GroupResponse) SetAccessauthsNil(b bool)`
SetAccessauthsNil sets the value for Accessauths to be an explicit nil
### UnsetAccessauths
`func (o *GroupResponse) UnsetAccessauths()`
UnsetAccessauths ensures that no value is present for Accessauths, 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)