blob: 4f616d8c47fa9cdb517734fb65110f4d8b02c71e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
// DomainDNSRecord undocumented
type DomainDNSRecord struct {
// Entity is the base model of DomainDNSRecord
Entity
// IsOptional undocumented
IsOptional *bool `json:"isOptional,omitempty"`
// Label undocumented
Label *string `json:"label,omitempty"`
// RecordType undocumented
RecordType *string `json:"recordType,omitempty"`
// SupportedService undocumented
SupportedService *string `json:"supportedService,omitempty"`
// TTL undocumented
TTL *int `json:"ttl,omitempty"`
}
|