@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
19 lines (17 loc) • 433 B
text/typescript
import {
UserAccountIdentifierInfo,
UserAgentIdentifierInfo,
UserEmailIdentifierInfo,
UserPointIdentifierInfo,
} from '../../reference/UserIdentifierInterface';
export interface RecommenderRequest {
recommender_id: string;
datamart_id: string;
user_identifiers: (
| UserPointIdentifierInfo
| UserEmailIdentifierInfo
| UserAccountIdentifierInfo
| UserAgentIdentifierInfo
)[];
input_data: unknown;
}