import type * as Square from "../index"; /** * Describes the pricing for the subscription. */ export interface SubscriptionPricing { /** * RELATIVE or STATIC * See [SubscriptionPricingType](#type-subscriptionpricingtype) for possible values */ type?: Square.SubscriptionPricingType; /** The ids of the discount catalog objects */ discountIds?: string[] | null; /** The price of the subscription, if STATIC */ priceMoney?: Square.Money; }