Skip to content

Latest commit

 

History

History
53 lines (42 loc) · 1.18 KB

File metadata and controls

53 lines (42 loc) · 1.18 KB

DiscountCreate

Supported Types

components.DiscountFixedOnceForeverDurationCreate

const value: components.DiscountFixedOnceForeverDurationCreate = {
  duration: "forever",
  type: "percentage",
  name: "<value>",
  organizationId: "1dbfc517-0bbf-4301-9ba8-555ca42b9737",
};

components.DiscountFixedRepeatDurationCreate

const value: components.DiscountFixedRepeatDurationCreate = {
  duration: "forever",
  durationInMonths: 446914,
  type: "percentage",
  name: "<value>",
  organizationId: "1dbfc517-0bbf-4301-9ba8-555ca42b9737",
};

components.DiscountPercentageOnceForeverDurationCreate

const value: components.DiscountPercentageOnceForeverDurationCreate = {
  duration: "repeating",
  type: "fixed",
  basisPoints: 623636,
  name: "<value>",
  organizationId: "1dbfc517-0bbf-4301-9ba8-555ca42b9737",
};

components.DiscountPercentageRepeatDurationCreate

const value: components.DiscountPercentageRepeatDurationCreate = {
  duration: "repeating",
  durationInMonths: 225144,
  type: "fixed",
  basisPoints: 99998,
  name: "<value>",
  organizationId: "1dbfc517-0bbf-4301-9ba8-555ca42b9737",
};