@mediarithmics/plugins-nodejs-sdk
Version:
This is the mediarithmics nodejs to help plugin developers bootstrapping their plugin without having to deal with most of the plugin boilerplate
13 lines (12 loc) • 509 B
TypeScript
import { UserPointIdentifierInfo, UserEmailIdentifierInfo, UserAccountIdentifierInfo, UserAgentIdentifierInfo } from "../../../../index";
export interface UserCampaignResponse {
status: string;
data: UserCampaignResource;
count: number;
}
export interface UserCampaignResource {
user_account_id: string;
user_agent_ids: Array<string>;
databag: string;
user_identifiers: (UserPointIdentifierInfo | UserEmailIdentifierInfo | UserAccountIdentifierInfo | UserAgentIdentifierInfo)[];
}