CartItemSelectedOptionValuePrice
Contains details about the price of a selected customizable value.
type CartItemSelectedOptionValuePrice = {
__typename?: 'CartItemSelectedOptionValuePrice'; /** Indicates whether the price type is fixed, percent, or dynamic. */
type: PriceTypeEnum; /** A string that describes the unit of the value. */
units: Scalars['String']['output']; /** A price value. */
value: Scalars['Float']['output'];
};