Type Alias PriceResponse

PriceResponse: {
    _id: string;
    membershipOffers?: PaymentMembershipOffer[];
    variantOptionIds?: string[];
    locationId?: string;
    product?: string;
    userId?: string;
    name: string;
    type: PaymentPriceType;
    currency: string;
    amount: number;
    recurring?: RecurringPayment;
    createdAt?: string;
    updatedAt?: string;
    compareAtPrice?: number;
    trackInventory?: boolean;
    availableQuantity?: number;
    allowOutOfStockPurchases?: boolean;
}

Type declaration

  • _id: string
  • OptionalmembershipOffers?: PaymentMembershipOffer[]
  • OptionalvariantOptionIds?: string[]
  • OptionallocationId?: string
  • Optionalproduct?: string
  • OptionaluserId?: string
  • name: string
  • type: PaymentPriceType
  • currency: string
  • amount: number
  • Optionalrecurring?: RecurringPayment
  • OptionalcreatedAt?: string
  • OptionalupdatedAt?: string
  • OptionalcompareAtPrice?: number
  • OptionaltrackInventory?: boolean
  • OptionalavailableQuantity?: number
  • OptionalallowOutOfStockPurchases?: boolean