Remove replace directives and use own fork to make go get work again (#1028)

See https://github.com/golang/go/issues/30354
go get doesn't honor the go.mod replace options.
This commit is contained in:
Wim
2020-03-08 17:08:18 +01:00
committed by GitHub
parent 2a0bc11b68
commit 9785edd263
3308 changed files with 291 additions and 291 deletions

View File

@@ -0,0 +1,57 @@
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
// AttributeType undocumented
type AttributeType int
const (
// AttributeTypeVDateTime undocumented
AttributeTypeVDateTime AttributeType = 5
// AttributeTypeVBoolean undocumented
AttributeTypeVBoolean AttributeType = 4
// AttributeTypeVBinary undocumented
AttributeTypeVBinary AttributeType = 3
// AttributeTypeVReference undocumented
AttributeTypeVReference AttributeType = 2
// AttributeTypeVInteger undocumented
AttributeTypeVInteger AttributeType = 1
// AttributeTypeVString undocumented
AttributeTypeVString AttributeType = 0
)
// AttributeTypePDateTime returns a pointer to AttributeTypeVDateTime
func AttributeTypePDateTime() *AttributeType {
v := AttributeTypeVDateTime
return &v
}
// AttributeTypePBoolean returns a pointer to AttributeTypeVBoolean
func AttributeTypePBoolean() *AttributeType {
v := AttributeTypeVBoolean
return &v
}
// AttributeTypePBinary returns a pointer to AttributeTypeVBinary
func AttributeTypePBinary() *AttributeType {
v := AttributeTypeVBinary
return &v
}
// AttributeTypePReference returns a pointer to AttributeTypeVReference
func AttributeTypePReference() *AttributeType {
v := AttributeTypeVReference
return &v
}
// AttributeTypePInteger returns a pointer to AttributeTypeVInteger
func AttributeTypePInteger() *AttributeType {
v := AttributeTypeVInteger
return &v
}
// AttributeTypePString returns a pointer to AttributeTypeVString
func AttributeTypePString() *AttributeType {
v := AttributeTypeVString
return &v
}