blob: 8091ee8152af0025664f41919b72886a45118800 (
plain) (
blame)
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
|
// Code generated by msgraph.go/gen DO NOT EDIT.
package msgraph
// AgreementAcceptanceState undocumented
type AgreementAcceptanceState string
const (
// AgreementAcceptanceStateVAccepted undocumented
AgreementAcceptanceStateVAccepted AgreementAcceptanceState = "accepted"
// AgreementAcceptanceStateVDeclined undocumented
AgreementAcceptanceStateVDeclined AgreementAcceptanceState = "declined"
)
var (
// AgreementAcceptanceStatePAccepted is a pointer to AgreementAcceptanceStateVAccepted
AgreementAcceptanceStatePAccepted = &_AgreementAcceptanceStatePAccepted
// AgreementAcceptanceStatePDeclined is a pointer to AgreementAcceptanceStateVDeclined
AgreementAcceptanceStatePDeclined = &_AgreementAcceptanceStatePDeclined
)
var (
_AgreementAcceptanceStatePAccepted = AgreementAcceptanceStateVAccepted
_AgreementAcceptanceStatePDeclined = AgreementAcceptanceStateVDeclined
)
|