shopee-client
Version:
Shoppe Open API Client
16 lines (15 loc) • 639 B
TypeScript
import BaseModule from "../BaseModule";
import GetPushConfigResponse from "./response/GetPushConfigResponse";
import SetPushConfigRequest from "./request/SetPushConfigRequest";
import SetPushConfigResponse from "./response/SetPushConfigResponse";
export default class PushModule extends BaseModule {
/**
* Use this API to get the configuration information of push service.
*/
getPushConfig(): Promise<GetPushConfigResponse>;
/**
* Use this API to set the configuration information of push service.
* @param request
*/
setPushConfig(request: SetPushConfigRequest): Promise<SetPushConfigResponse>;
}