blob: c56b8bd847d5d6aafe60efc93d87debf336d85d7 (
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-generate.go 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
)
|