-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathdeleted_teams_get_all_messages_response.go
27 lines (25 loc) · 1.43 KB
/
deleted_teams_get_all_messages_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 teamwork
import (
i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91 "github.com/microsoft/kiota-abstractions-go/serialization"
)
// Deprecated: This class is obsolete. Use DeletedTeamsGetAllMessagesGetResponseable instead.
type DeletedTeamsGetAllMessagesResponse struct {
DeletedTeamsGetAllMessagesGetResponse
}
// NewDeletedTeamsGetAllMessagesResponse instantiates a new DeletedTeamsGetAllMessagesResponse and sets the default values.
func NewDeletedTeamsGetAllMessagesResponse()(*DeletedTeamsGetAllMessagesResponse) {
m := &DeletedTeamsGetAllMessagesResponse{
DeletedTeamsGetAllMessagesGetResponse: *NewDeletedTeamsGetAllMessagesGetResponse(),
}
return m
}
// CreateDeletedTeamsGetAllMessagesResponseFromDiscriminatorValue creates a new instance of the appropriate class based on discriminator value
// returns a Parsable when successful
func CreateDeletedTeamsGetAllMessagesResponseFromDiscriminatorValue(parseNode i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, error) {
return NewDeletedTeamsGetAllMessagesResponse(), nil
}
// Deprecated: This class is obsolete. Use DeletedTeamsGetAllMessagesGetResponseable instead.
type DeletedTeamsGetAllMessagesResponseable interface {
DeletedTeamsGetAllMessagesGetResponseable
i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable
}