2026-04-25 13:34:29 +00:00
|
|
|
import * as plugins from '../plugins.js';
|
|
|
|
|
|
|
|
|
|
export interface IRequest_SendPushNotification extends plugins.typedrequestInterfaces.implementsTR<
|
|
|
|
|
plugins.typedrequestInterfaces.ITypedRequest,
|
|
|
|
|
IRequest_SendPushNotification
|
|
|
|
|
> {
|
|
|
|
|
method: 'sendPushNotification';
|
|
|
|
|
request: {
|
|
|
|
|
deviceToken: string;
|
|
|
|
|
message: string;
|
|
|
|
|
}
|
|
|
|
|
response: {
|
|
|
|
|
ok: boolean;
|
|
|
|
|
status: string;
|
|
|
|
|
}
|
2026-04-28 11:17:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export type IReq_SendPushNotification = IRequest_SendPushNotification;
|