/*** * * SaaSquatch Type Definitions * * This file was automatically generated. DO NOT edit it by hand, instead edit the related JSON Schema file. * * Generated on 2026-03-20T21:11:42.771Z * ***/ /*** * CouponCreatedData.schema.json * Generated on 2026-03-20T21:11:43.647Z * This file was automatically generated. DO NOT edit it by hand, instead edit the related JSON Schema file. ***/ /** * The code to be shared */ export type Code = string /** * The date this code was created */ export type DateCreated = number /** * The Id of the program this code was created for */ export type ProgramId = (string | null) /** * Sent when a new coupon (referral code) is created, often when the user is created or interacts with a newly activated program */ export interface CouponCreatedWebhookSchema { code: Code dateCreated: DateCreated programId?: ProgramId }