Documentation
¶
Index ¶
- type Client
- type CurrencyService
- type DomainService
- func (d *DomainService) DNS(req *domain.DNSRequest) (*domain.DNSResponse, error)
- func (d *DomainService) Search(req *domain.SearchRequest) (*domain.SearchResponse, error)
- func (d *DomainService) Status(req *domain.StatusRequest) (*domain.StatusResponse, error)
- func (d *DomainService) Whois(req *domain.WhoisRequest) (*domain.WhoisResponse, error)
- type EmailService
- type Error
- type IPService
- type WebpageService
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Client ¶
type Client struct {
// contains filtered or unexported fields
}
func (*Client) Currency ¶ added in v1.0.1
func (c *Client) Currency() *CurrencyService
func (*Client) Domain ¶ added in v1.0.1
func (c *Client) Domain() *DomainService
func (*Client) Email ¶ added in v1.0.1
func (c *Client) Email() *EmailService
func (*Client) Webpage ¶ added in v1.0.1
func (c *Client) Webpage() *WebpageService
type CurrencyService ¶ added in v1.0.1
type CurrencyService struct {
// contains filtered or unexported fields
}
func (*CurrencyService) Convert ¶ added in v1.0.1
func (c *CurrencyService) Convert(req *currency.ConvertRequest) (*currency.ConvertResponse, error)
func (*CurrencyService) List ¶ added in v1.0.1
func (c *CurrencyService) List(req *currency.ListRequest) (*currency.ListResponse, error)
func (*CurrencyService) Rates ¶ added in v1.0.2
func (c *CurrencyService) Rates(req *currency.RatesRequest) (*currency.RatesResponse, error)
type DomainService ¶ added in v1.0.1
type DomainService struct {
// contains filtered or unexported fields
}
func (*DomainService) DNS ¶ added in v1.0.1
func (d *DomainService) DNS(req *domain.DNSRequest) (*domain.DNSResponse, error)
func (*DomainService) Search ¶ added in v1.0.1
func (d *DomainService) Search(req *domain.SearchRequest) (*domain.SearchResponse, error)
func (*DomainService) Status ¶ added in v1.0.1
func (d *DomainService) Status(req *domain.StatusRequest) (*domain.StatusResponse, error)
func (*DomainService) Whois ¶ added in v1.0.1
func (d *DomainService) Whois(req *domain.WhoisRequest) (*domain.WhoisResponse, error)
type EmailService ¶ added in v1.0.1
type EmailService struct {
// contains filtered or unexported fields
}
func (*EmailService) Verify ¶ added in v1.0.1
func (es *EmailService) Verify(req *email.VerifyRequest) (*email.VerifyResponse, error)
type Error ¶
type IPService ¶ added in v1.0.1
type IPService struct {
// contains filtered or unexported fields
}
func (*IPService) Lookup ¶ added in v1.0.1
func (i *IPService) Lookup(req *ip.LookupRequest) (*ip.LookupResponse, error)
type WebpageService ¶ added in v1.0.1
type WebpageService struct {
// contains filtered or unexported fields
}
func (*WebpageService) Image ¶ added in v1.0.1
func (w *WebpageService) Image(req *webpage.ImageRequest) (*webpage.ImageResponse, error)
func (*WebpageService) PDF ¶ added in v1.0.1
func (w *WebpageService) PDF(req *webpage.PDFRequest) (*webpage.PDFResponse, error)
Click to show internal directories.
Click to hide internal directories.