That fuck shit the fascists are using
1package org.tm.archive.conversation;
2
3import javax.annotation.Nullable;
4
5/**
6 * Interface for responding to scheduled message dialogs blocking the send flow for permissions check.
7 */
8public interface ScheduleMessageDialogCallback {
9 String ARGUMENT_METRIC_ID = "ARGUMENT_METRIC_ID";
10 String ARGUMENT_SCHEDULED_DATE = "ARGUMENT_SCHEDULED_DATE";
11
12 void onSchedulePermissionsGranted(@Nullable String metricId, long scheduledDate);
13}