-
Notifications
You must be signed in to change notification settings - Fork 0
/
model_v1_domain_resource.go
40 lines (39 loc) · 1.2 KB
/
model_v1_domain_resource.go
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
31
32
33
34
35
36
37
38
39
40
/*
* LinksGPT URL Shortener SDK
*
* LinksGPT URL Shortener SDK
*
* API version: 1.0.0
* Contact: [email protected]
* Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
*/
package swagger
type V1DomainResource struct {
// id
Id string `json:"id,omitempty"`
// domain name
DomainName string `json:"domainName,omitempty"`
Provider *V1DomainResourceProvider `json:"provider,omitempty"`
// root domain name
RootDomainName string `json:"rootDomainName,omitempty"`
// sub domain
SubDomain string `json:"subDomain,omitempty"`
// actual domain name
ActualDomainName string `json:"actualDomainName,omitempty"`
// whether the domain is active
Active bool `json:"active,omitempty"`
// type of domain 0: domain of platform 1: domain of user
Type_ int32 `json:"type,omitempty"`
// dns type
DnsType string `json:"dnsType,omitempty"`
// current dns value
DnsValue string `json:"dnsValue,omitempty"`
// whether dns is correct
DnsCorrect bool `json:"dnsCorrect,omitempty"`
// whether https requested
HttpsRequested bool `json:"httpsRequested,omitempty"`
// created at
CreatedAt string `json:"createdAt,omitempty"`
// updated at
UpdatedAt string `json:"updatedAt,omitempty"`
}