export declare const CampaignAgentAction: { readonly Discard: "DISCARD"; }; /** * Actions that can performed on a contact by an agent */ export type CampaignAgentAction = (typeof CampaignAgentAction)[keyof typeof CampaignAgentAction]; export declare const CampaignCommunicationLimitTimeUnit: { readonly Day: "DAY"; }; /** * The communication limit time unit */ export type CampaignCommunicationLimitTimeUnit = (typeof CampaignCommunicationLimitTimeUnit)[keyof typeof CampaignCommunicationLimitTimeUnit]; export declare const CampaignDayOfWeek: { readonly Monday: "MONDAY"; readonly Tuesday: "TUESDAY"; readonly Wednesday: "WEDNESDAY"; readonly Thursday: "THURSDAY"; readonly Friday: "FRIDAY"; readonly Saturday: "SATURDAY"; readonly Sunday: "SUNDAY"; }; /** * Day of week */ export type CampaignDayOfWeek = (typeof CampaignDayOfWeek)[keyof typeof CampaignDayOfWeek]; export declare const CampaignInstanceLimitsHandling: { readonly OptIn: "OPT_IN"; readonly OptOut: "OPT_OUT"; }; /** * Enumeration of Instance Limits handling in a Campaign */ export type CampaignInstanceLimitsHandling = (typeof CampaignInstanceLimitsHandling)[keyof typeof CampaignInstanceLimitsHandling]; export declare const CampaignLocalTimeZoneDetectionType: { readonly ZipCode: "ZIP_CODE"; readonly AreaCode: "AREA_CODE"; }; /** * Local TimeZone Detection method */ export type CampaignLocalTimeZoneDetectionType = (typeof CampaignLocalTimeZoneDetectionType)[keyof typeof CampaignLocalTimeZoneDetectionType]; export declare const CampaignType: { readonly Managed: "MANAGED"; readonly Journey: "JOURNEY"; }; /** * Campaign type */ export type CampaignType = (typeof CampaignType)[keyof typeof CampaignType];