ggez-banking-sdk
Version:
A Node.js package to handle GGEZ Banking API endpoints, Simplify the process of managing CRUD operations with this efficient and easy-to-use package.
11 lines (10 loc) • 646 B
TypeScript
import type { BaseProxyParameters, GGEZGiftRewards } from "../../types";
import { BaseProxy } from "./baseProxy";
declare class PromotionProxy extends BaseProxy {
private promotionService;
constructor(data: BaseProxyParameters);
getPromotionByCode: (code: string) => Promise<import("../..").ApiResponse<import("../..").PromotionDetails>>;
getTwitterSpotlightPostIds: () => Promise<import("../..").ApiResponse<import("../..").TwitterSpotlightPostIdsResult>>;
incrementPromotionParticipants: (data: GGEZGiftRewards) => Promise<import("../..").ApiResponse<import("../..").PromotionIncrementResult>>;
}
export { PromotionProxy };