blob: b1a207360df67adac69693cb178c43e3ea419824 (
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
26
27
28
29
30
|
// Code generated by msgraph.go/gen DO NOT EDIT.
package msgraph
// GiphyRatingType undocumented
type GiphyRatingType string
const (
// GiphyRatingTypeVStrict undocumented
GiphyRatingTypeVStrict GiphyRatingType = "strict"
// GiphyRatingTypeVModerate undocumented
GiphyRatingTypeVModerate GiphyRatingType = "moderate"
// GiphyRatingTypeVUnknownFutureValue undocumented
GiphyRatingTypeVUnknownFutureValue GiphyRatingType = "unknownFutureValue"
)
var (
// GiphyRatingTypePStrict is a pointer to GiphyRatingTypeVStrict
GiphyRatingTypePStrict = &_GiphyRatingTypePStrict
// GiphyRatingTypePModerate is a pointer to GiphyRatingTypeVModerate
GiphyRatingTypePModerate = &_GiphyRatingTypePModerate
// GiphyRatingTypePUnknownFutureValue is a pointer to GiphyRatingTypeVUnknownFutureValue
GiphyRatingTypePUnknownFutureValue = &_GiphyRatingTypePUnknownFutureValue
)
var (
_GiphyRatingTypePStrict = GiphyRatingTypeVStrict
_GiphyRatingTypePModerate = GiphyRatingTypeVModerate
_GiphyRatingTypePUnknownFutureValue = GiphyRatingTypeVUnknownFutureValue
)
|