@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
14 lines • 444 B
TypeScript
import { Decision } from './Decision';
import { CampaignTypeEnum } from './CampaignTypeEnum';
/** Customer consent information for a campaign */
export interface Consent {
/** Campaign name */
campaign: string;
/** Consent decisions history for this campaign */
history: Decision[];
/** Campaign type */
type: CampaignTypeEnum;
/** Current consent value */
value: boolean;
}
//# sourceMappingURL=Consent.d.ts.map