/** * NOTE: This file is auto generated by Xendit. * Do not edit the class manually. * Improvements? Share your ideas at https://github.com/xendit/xendit-node */ /** * Representing a notification channel for sending messages. * @export */ export declare const NotificationChannel: { readonly Email: "email"; readonly Sms: "sms"; readonly Whatsapp: "whatsapp"; readonly Viber: "viber"; readonly XenditEnumDefaultFallback: "UNKNOWN_ENUM_VALUE"; }; export type NotificationChannel = typeof NotificationChannel[keyof typeof NotificationChannel]; export declare function NotificationChannelFromJSON(json: any): NotificationChannel; export declare function NotificationChannelFromJSONTyped(json: any, ignoreDiscriminator: boolean): NotificationChannel; export declare function NotificationChannelToJSON(value?: NotificationChannel | null): any;