mychips-react-sdk
Version:
MyChips Offerwall
28 lines • 1.23 kB
TypeScript
import type { RewardDTO } from "./domain/RewardDTO";
import { MCGenderEnum } from "./domain/MCGenderEnum";
export declare class MCOfferwallSDK {
private static _apikey;
private static _userService;
static init(apikey: string): void;
static getApikey(): string;
static setUserId(uid: string): Promise<void>;
static getUserId(): Promise<string>;
static setGaid(gaid: string): Promise<void>;
static getGaid(): Promise<string>;
static setIdfa(idfa: string): Promise<void>;
static getIdfa(): Promise<string>;
static setGender(gender: MCGenderEnum): Promise<void>;
static setAge(age: number): Promise<void>;
static setAffSub1(sub1: string): Promise<void>;
static setAffSub2(sub2: string): Promise<void>;
static setAffSub3(sub3: string): Promise<void>;
static setAffSub4(sub4: string): Promise<void>;
static setAffSub5(sub5: string): Promise<void>;
static getAffSub1(): Promise<string>;
static getAffSub2(): Promise<string>;
static getAffSub3(): Promise<string>;
static getAffSub4(): Promise<string>;
static getAffSub5(): Promise<string>;
static GetReward(adunit_id: string): Promise<RewardDTO | null>;
}
//# sourceMappingURL=MCOfferwallSDK.d.ts.map