Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 19 additions & 1 deletion domain.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,25 @@ type DomainCheckResult struct {
}

type TLDListResult struct {
Name string `xml:"Name,attr"`
Name string `xml:"Name,attr"`
NonRealTimeDomain bool `xml:"NonRealTimeDomain,attr"`
MinRegisterYears int `xml:"MinRegisterYears,attr"`
MaxRegisterYears int `xml:"MaxRegisterYears,attr"`
MinRenewYears int `xml:"MinRenewYears,attr"`
MaxRenewYears int `xml:"MaxRenewYears,attr"`
MinTransferYears int `xml:"MinTransferYears,attr"`
MaxTransferYears int `xml:"MaxTransferYears,attr"`
IsAPIRegisterable bool `xml:"IsApiRegisterable,attr"`
IsAPIRenewable bool `xml:"IsApiRenewable,attr"`
IsAPITransferable bool `xml:"IsApiTransferable,attr"`
IsEppRequired bool `xml:"IsEppRequired,attr"`
IsDisableModContact bool `xml:"IsDisableModContact,attr"`
IsDisableWGAllot bool `xml:"IsDisableWGAllot,attr"`
IsIncludeInExtendedSearchOnly bool `xml:"IsIncludeInExtendedSearchOnly,attr"`
SequenceNumber int `xml:"SequenceNumber,attr"`
Type string `xml:"Type,attr"`
IsSupportsIDN bool `xml:"IsSupportsIDN,attr"`
Category string `xml:"Category,attr"`
}

type DomainCreateResult struct {
Expand Down