-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathclasses_item_assignment_categories_delta_response.go
27 lines (25 loc) · 1.59 KB
/
classes_item_assignment_categories_delta_response.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package education
import (
i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91 "github.com/microsoft/kiota-abstractions-go/serialization"
)
// Deprecated: This class is obsolete. Use ClassesItemAssignmentCategoriesDeltaGetResponseable instead.
type ClassesItemAssignmentCategoriesDeltaResponse struct {
ClassesItemAssignmentCategoriesDeltaGetResponse
}
// NewClassesItemAssignmentCategoriesDeltaResponse instantiates a new ClassesItemAssignmentCategoriesDeltaResponse and sets the default values.
func NewClassesItemAssignmentCategoriesDeltaResponse()(*ClassesItemAssignmentCategoriesDeltaResponse) {
m := &ClassesItemAssignmentCategoriesDeltaResponse{
ClassesItemAssignmentCategoriesDeltaGetResponse: *NewClassesItemAssignmentCategoriesDeltaGetResponse(),
}
return m
}
// CreateClassesItemAssignmentCategoriesDeltaResponseFromDiscriminatorValue creates a new instance of the appropriate class based on discriminator value
// returns a Parsable when successful
func CreateClassesItemAssignmentCategoriesDeltaResponseFromDiscriminatorValue(parseNode i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, error) {
return NewClassesItemAssignmentCategoriesDeltaResponse(), nil
}
// Deprecated: This class is obsolete. Use ClassesItemAssignmentCategoriesDeltaGetResponseable instead.
type ClassesItemAssignmentCategoriesDeltaResponseable interface {
ClassesItemAssignmentCategoriesDeltaGetResponseable
i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable
}