@salla.sa/twilight-components
Version:
Salla Web Component
23 lines (22 loc) • 482 B
TypeScript
export interface GiftToCardDTO {
text: string;
sender_name: string;
receiver: Receiver;
quantity: number;
deliver_at: string;
image_url: string;
time_zone?: string;
donation_amount?: number;
has_apple_pay: boolean;
receiverCity?: number;
}
export interface Receiver {
name: string;
country_code?: string;
mobile_country_code?: string;
mobile: string;
}
export interface Phone {
country_code: string;
number: string;
}