Skip to content

Commit

Permalink
Update API Client
Browse files Browse the repository at this point in the history
  • Loading branch information
authentik-automation[bot] committed Aug 30, 2023
1 parent 1597f4e commit 90e4968
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 9 deletions.
1 change: 1 addition & 0 deletions api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34650,6 +34650,7 @@ components:
nullable: true
type: string
parent_name:
nullable: true
readOnly: true
type: string
users:
Expand Down
14 changes: 12 additions & 2 deletions docs/Group.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Name | Type | Description | Notes
**Name** | **string** | |
**IsSuperuser** | Pointer to **bool** | Users added to this group will be superusers. | [optional]
**Parent** | Pointer to **NullableString** | | [optional]
**ParentName** | **string** | | [readonly]
**ParentName** | **NullableString** | | [readonly]
**Users** | Pointer to **[]int32** | | [optional]
**Attributes** | Pointer to **map[string]interface{}** | | [optional]
**UsersObj** | [**[]GroupMember**](GroupMember.md) | | [readonly]
Expand All @@ -18,7 +18,7 @@ Name | Type | Description | Notes

### NewGroup

`func NewGroup(pk string, numPk int32, name string, parentName string, usersObj []GroupMember, ) *Group`
`func NewGroup(pk string, numPk int32, name string, parentName NullableString, usersObj []GroupMember, ) *Group`

NewGroup instantiates a new Group object
This constructor will assign default values to properties that have it defined,
Expand Down Expand Up @@ -173,6 +173,16 @@ and a boolean to check if the value has been set.
SetParentName sets ParentName field to given value.


### SetParentNameNil

`func (o *Group) SetParentNameNil(b bool)`

SetParentNameNil sets the value for ParentName to be an explicit nil

### UnsetParentName
`func (o *Group) UnsetParentName()`

UnsetParentName ensures that no value is present for ParentName, not even an explicit nil
### GetUsers

`func (o *Group) GetUsers() []int32`
Expand Down
16 changes: 9 additions & 7 deletions model_group.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions schema.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30498,6 +30498,7 @@ components:
parent_name:
type: string
readOnly: true
nullable: true
users:
type: array
items:
Expand Down

0 comments on commit 90e4968

Please sign in to comment.