interface ProductPublication {
    publishedAt: string;
    publishedBy: string;
    since: string;
    status: "ACTIVE" | "DRAFT" | "ARCHIVED";
    until: string;
}

Properties

publishedAt: string

ISO date time string - the date the product was published at

publishedBy: string

Info about who published the product

since: string

ISO date time string - when the product was published from

status: "ACTIVE" | "DRAFT" | "ARCHIVED"

The status of the product's publication (DRAFT publications will not be returned from the active list)

until: string

ISO date time string - when the product was published until

Generated using TypeDoc