/** * Represents a Square Online site, which is an online store for a Square seller. */ export interface Site { /** The Square-assigned ID of the site. */ id?: string; /** The title of the site. */ siteTitle?: string | null; /** The domain of the site (without the protocol). For example, `mysite1.square.site`. */ domain?: string | null; /** Indicates whether the site is published. */ isPublished?: boolean | null; /** The timestamp of when the site was created, in RFC 3339 format. */ createdAt?: string; /** The timestamp of when the site was last updated, in RFC 3339 format. */ updatedAt?: string; }