export interface SmsOffer {
    /**
     * Customer phone number (e.g., +71234567890) for SMS notification. For offline store merchantId only.
     * Max length: 2048
     * Pattern: ^\+\d+$
     */
    phone: string;
}
