@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
12 lines (9 loc) • 387 B
text/typescript
import { DataResponse } from '../../../api/core/common/Response';
import { UserIdentifierInfo } from '../../../api/reference/UserIdentifierInterface';
export type UserCampaignResponse = DataResponse<UserCampaignResource>;
export interface UserCampaignResource {
user_account_id: string;
user_agent_ids: Array<string>;
databag: string;
user_identifiers: UserIdentifierInfo[];
}