/** * Button that prompts the recipient to add an event to their calendar. */ export interface RcsButtonScheduleEvent { /** Detailed description for the calendar event. */ eventDescription?: string; /** End time in ISO 8601 format. */ eventEndTime: string; /** Starting time in ISO 8601 format. */ eventStartTime: string; /** Title of the event. */ eventTitle: string; /** Optional additional data to attach to this button. */ metadata?: string; /** Display text for the button. */ title: string; }