static void Main(string[] args)
        {
            //get rc call log data
            //mine is an empty array right now.
            //not sure why because I have made calls
            Console.WriteLine(RingCentral.get_log(clientUsername, clientExtension, clientPassword));

            //make a note for the contact with the given phone number in your contact list
            //right now it just says tets note because my log data is empty
            Salesnexus.create_log_note(sn_username, sn_pasword, sn_recipient);
        }
 public Client(RingCentral.SDK.SDK ringCentralSdk)
 {
     Sdk = ringCentralSdk;
 }