import type * as Square from "../index"; /** * Defines the fields that are included in the response body of * a request to the [RegisterDomain](api-endpoint:ApplePay-RegisterDomain) endpoint. * * Either `errors` or `status` are present in a given response (never both). */ export interface RegisterDomainResponse { /** Any errors that occurred during the request. */ errors?: Square.Error_[]; /** * The status of the domain registration. * * See [RegisterDomainResponseStatus](entity:RegisterDomainResponseStatus) for possible values. * See [RegisterDomainResponseStatus](#type-registerdomainresponsestatus) for possible values */ status?: Square.RegisterDomainResponseStatus; }