/** * @public * @enum */ export declare const AcceptCodeValidation: { readonly ENFORCE: "ENFORCE"; readonly IGNORE: "IGNORE"; }; /** * @public */ export type AcceptCodeValidation = (typeof AcceptCodeValidation)[keyof typeof AcceptCodeValidation]; /** * @public * @enum */ export declare const AcceptType: { readonly DELIVERED: "DELIVERED"; readonly READ: "READ"; }; /** * @public */ export type AcceptType = (typeof AcceptType)[keyof typeof AcceptType]; /** * @public * @enum */ export declare const ValidationExceptionReason: { readonly CANNOT_PARSE: "CANNOT_PARSE"; readonly FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED"; readonly OTHER: "OTHER"; readonly UNKNOWN_OPERATION: "UNKNOWN_OPERATION"; }; /** * @public */ export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason]; /** * @public * @enum */ export declare const ActivationStatus: { readonly ACTIVATED: "ACTIVATED"; readonly NOT_ACTIVATED: "NOT_ACTIVATED"; }; /** * @public */ export type ActivationStatus = (typeof ActivationStatus)[keyof typeof ActivationStatus]; /** * @public * @enum */ export declare const ChannelType: { readonly EMAIL: "EMAIL"; readonly SMS: "SMS"; readonly VOICE: "VOICE"; }; /** * @public */ export type ChannelType = (typeof ChannelType)[keyof typeof ChannelType]; /** * @public * @enum */ export declare const ContactType: { readonly ESCALATION: "ESCALATION"; readonly ONCALL_SCHEDULE: "ONCALL_SCHEDULE"; readonly PERSONAL: "PERSONAL"; }; /** * @public */ export type ContactType = (typeof ContactType)[keyof typeof ContactType]; /** * @public * @enum */ export declare const DayOfWeek: { readonly FRI: "FRI"; readonly MON: "MON"; readonly SAT: "SAT"; readonly SUN: "SUN"; readonly THU: "THU"; readonly TUE: "TUE"; readonly WED: "WED"; }; /** * @public */ export type DayOfWeek = (typeof DayOfWeek)[keyof typeof DayOfWeek]; /** * @public * @enum */ export declare const ReceiptType: { readonly DELIVERED: "DELIVERED"; readonly ERROR: "ERROR"; readonly READ: "READ"; readonly SENT: "SENT"; readonly STOP: "STOP"; }; /** * @public */ export type ReceiptType = (typeof ReceiptType)[keyof typeof ReceiptType]; /** * @public * @enum */ export declare const ShiftType: { readonly OVERRIDDEN: "OVERRIDDEN"; readonly REGULAR: "REGULAR"; }; /** * @public */ export type ShiftType = (typeof ShiftType)[keyof typeof ShiftType];