editReminder

Chỉnh sửa nhắc hẹn

api.editReminder(options, groupId)

Parameters

  • options EditReminderOptions

  • groupId string

  • type ThreadType?

    • mặc định ThreadType.User

Return

Promise<EditReminderResponse>

Types

export type EditReminderOptions = {
    title: string;
    topicId: string;
    emoji?: string;
    startTime?: number;
    repeat?: ReminderRepeatMode;
};

export type EditReminderUser = ReminderUser;
export type EditReminderGroup = Omit<ReminderGroup, "responseMem">;

export type EditReminderResponse = EditReminderUser | EditReminderGroup;

Examples

Last updated