export interface BuyItNowLinkInterface { accountGroupId?: string; userId?: string; packageId?: string; linkId?: string; created?: Date; link?: string; } export interface GenerateBuyItNowLinkRequestInterface { accountGroupId?: string; userId?: string; packageId?: string; } export interface GenerateBuyItNowLinkResponseInterface { link?: BuyItNowLinkInterface; shortenedUrl?: string; } export interface GetBuyItNowLinkByLinkIDRequestInterface { linkId?: string; } export interface GetBuyItNowLinkByLinkIDResponseInterface { link?: BuyItNowLinkInterface; }