UNPKG

mpp-sdk

Version:

SDK to talk to the Memento Payments Platform

16 lines (15 loc) 333 B
import { Owner } from "./owner"; export interface Referral { id: string; code: string; campaign_id: string; expires_at: string | Date; created_at: string | Date; updated_at: string | Date; owner: Owner; } export interface ReferralInput { campaign_id: string; phone?: string; email?: string; }