blob: 8ebde677bac17e83bc7c27950ad76c7711d4ec8b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
// DomainDNSSrvRecord undocumented
type DomainDNSSrvRecord struct {
// DomainDNSRecord is the base model of DomainDNSSrvRecord
DomainDNSRecord
// NameTarget undocumented
NameTarget *string `json:"nameTarget,omitempty"`
// Port undocumented
Port *int `json:"port,omitempty"`
// Priority undocumented
Priority *int `json:"priority,omitempty"`
// Protocol undocumented
Protocol *string `json:"protocol,omitempty"`
// Service undocumented
Service *string `json:"service,omitempty"`
// Weight undocumented
Weight *int `json:"weight,omitempty"`
}
|