chore: update libregraph api again

This commit is contained in:
Michael Barz
2023-11-28 11:07:31 +01:00
committed by Florian Schade
parent ce705bc6c8
commit eb6ec1311a
14 changed files with 508 additions and 232 deletions

View File

@@ -887,7 +887,7 @@ type ApiListSchoolUsersRequest struct {
schoolId string
}
func (r ApiListSchoolUsersRequest) Execute() (*CollectionOfEducationUser1, *http.Response, error) {
func (r ApiListSchoolUsersRequest) Execute() (*CollectionOfEducationUser, *http.Response, error) {
return r.ApiService.ListSchoolUsersExecute(r)
}
@@ -907,13 +907,13 @@ func (a *EducationSchoolApiService) ListSchoolUsers(ctx context.Context, schoolI
}
// Execute executes the request
// @return CollectionOfEducationUser1
func (a *EducationSchoolApiService) ListSchoolUsersExecute(r ApiListSchoolUsersRequest) (*CollectionOfEducationUser1, *http.Response, error) {
// @return CollectionOfEducationUser
func (a *EducationSchoolApiService) ListSchoolUsersExecute(r ApiListSchoolUsersRequest) (*CollectionOfEducationUser, *http.Response, error) {
var (
localVarHTTPMethod = http.MethodGet
localVarPostBody interface{}
formFiles []formFile
localVarReturnValue *CollectionOfEducationUser1
localVarReturnValue *CollectionOfEducationUser
)
localBasePath, err := a.client.cfg.ServerURLWithContext(r.ctx, "EducationSchoolApiService.ListSchoolUsers")