package api

// Domain is the structure of the domain object.
type Domain struct {
	App     string `json:"app"`
	Created string `json:"created"`
	Domain  string `json:"domain"`
	Owner   string `json:"owner"`
	Updated string `json:"updated"`
}

// DomainCreateRequest is the structure of POST /v2/app/<app id>/domains/.
type DomainCreateRequest struct {
	Domain string `json:"domain"`
}
