Skip to content

Latest commit

 

History

History
32 lines (29 loc) · 1.81 KB

File metadata and controls

32 lines (29 loc) · 1.81 KB

PriceList

Properties

Name Type Description Notes
id String The price list's ID
name String The price list's name
description String The price list's description
type TypeEnum The type of Price List. This can be one of either `sale` or `override`.
status StatusEnum The status of the Price List
startsAt OffsetDateTime The date with timezone that the Price List starts being valid.
endsAt OffsetDateTime The date with timezone that the Price List stops being valid.
customerGroups List<CustomerGroup> The Customer Groups that the Price List applies to. Available if the relation `customer_groups` is expanded. [optional]
prices List<MoneyAmount> The Money Amounts that are associated with the Price List. Available if the relation `prices` is expanded. [optional]
includesTax Boolean [EXPERIMENTAL] Does the price list prices include tax [optional]
createdAt OffsetDateTime The date with timezone at which the resource was created.
updatedAt OffsetDateTime The date with timezone at which the resource was updated.
deletedAt OffsetDateTime The date with timezone at which the resource was deleted.

Enum: TypeEnum

Name Value
SALE "sale"
OVERRIDE "override"

Enum: StatusEnum

Name Value
ACTIVE "active"
DRAFT "draft"