@gradientedge/commercetools-utils
    Preparing search index...

    Interface StandalonePrice

    interface StandalonePrice {
        active: boolean;
        channel?: ChannelReference;
        country?: string;
        createdAt: string;
        createdBy?: CreatedBy;
        custom?: CustomFields;
        customerGroup?: CustomerGroupReference;
        discounted?: DiscountedPrice;
        id: string;
        key?: string;
        lastModifiedAt: string;
        lastModifiedBy?: LastModifiedBy;
        recurrencePolicy?: RecurrencePolicyReference;
        sku: string;
        staged?: StagedStandalonePrice;
        tiers?: PriceTier[];
        validFrom?: string;
        validUntil?: string;
        value: TypedMoney;
        version: number;
    }

    Hierarchy (View Summary)

    Index
    active: boolean

    Whether the StandalonePrice is considered during Product price selection. If set to false, the StandalonePrice is not considered during Product price selection and any associated Line Items in a Cart cannot be ordered.

    Product distribution Channel for which this Price is valid.

    country?: string

    Country for which this Price is valid.

    createdAt: string

    Date and time (UTC) the StandalonePrice was initially created.

    createdBy?: CreatedBy

    IDs and references that created the StandalonePrice.

    custom?: CustomFields

    Custom Fields of the StandalonePrice.

    customerGroup?: CustomerGroupReference

    CustomerGroup for which this Price is valid.

    discounted?: DiscountedPrice

    Set if a matching ProductDiscount exists. If set, the API uses the discounted value for the Line Item price selection.

    id: string

    Unique identifier of the StandalonePrice.

    key?: string

    User-defined unique identifier of the StandalonePrice.

    lastModifiedAt: string

    Date and time (UTC) the StandalonePrice was last updated.

    lastModifiedBy?: LastModifiedBy

    IDs and references that last modified the StandalonePrice.

    recurrencePolicy?: RecurrencePolicyReference

    RecurrencePolicy for which this Price is valid.

    sku: string

    SKU of the ProductVariant to which this Price is associated.

    Staged changes of the StandalonePrice. Only present if the StandalonePrice has some changes staged.

    tiers?: PriceTier[]

    Price tiers if any are defined.

    If `discounted` is present, the tiered Price is ignored for a Product Variant.
    
    validFrom?: string

    Date from which the Price is valid.

    validUntil?: string

    Date until the Price is valid. Standalone Prices that are no longer valid are not automatically deleted, but they can be deleted if necessary.

    value: TypedMoney

    Money value of this Price.

    version: number

    Current version of the StandalonePrice.