//
//  TelephonyStatus.h
//  rainbow
//
//  Created by Doha Tubaileh on 1/28/20.
//  Copyright © 2020 Facebook. All rights reserved.
//

#import <Foundation/Foundation.h>

//#define Forward_Off @"forward_off"
//#define Forward_Voicemail @"forward_voicemail"
//#define Forward_Phonenumber @"forward_phonenumber"
//#define Nomadic_Activated @"nomadic_activated"
//#define Nomadic_Dctivated @"nomadic_dctivated"


typedef NSString * TelephonyStatus NS_STRING_ENUM;

static TelephonyStatus const Forward_Off = @"forward_off";
static TelephonyStatus const Forward_Voicemail = @"forward_voicemail";
static TelephonyStatus const Forward_Phonenumber = @"forward_phonenumber";
static TelephonyStatus const Nomadic_Activated = @"nomadic_activated";
static TelephonyStatus const Nomadic_Dctivated = @"nomadic_dctivated";

