@@ -437,7 +437,7 @@ public static ResourceSet<CallResource> Read(string pathAccountSid = null,
437437 long ? limit = null ,
438438 ITwilioRestClient client = null )
439439 {
440- var options = new ReadCallOptions { PathAccountSid = pathAccountSid , To = to , From = from , ParentCallSid = parentCallSid , Status = status , StartTimeBefore = startTimeBefore , StartTime = startTime , StartTimeAfter = startTimeAfter , EndTimeBefore = endTimeBefore , EndTime = endTime , EndTimeAfter = endTimeAfter , PageSize = pageSize , Limit = limit } ;
440+ var options = new ReadCallOptions ( ) { PathAccountSid = pathAccountSid , To = to , From = from , ParentCallSid = parentCallSid , Status = status , StartTimeBefore = startTimeBefore , StartTime = startTime , StartTimeAfter = startTimeAfter , EndTimeBefore = endTimeBefore , EndTime = endTime , EndTimeAfter = endTimeAfter , PageSize = pageSize , Limit = limit } ;
441441 return Read ( options , client ) ;
442442 }
443443
@@ -475,7 +475,7 @@ public static async System.Threading.Tasks.Task<ResourceSet<CallResource>> ReadA
475475 long ? limit = null ,
476476 ITwilioRestClient client = null )
477477 {
478- var options = new ReadCallOptions { PathAccountSid = pathAccountSid , To = to , From = from , ParentCallSid = parentCallSid , Status = status , StartTimeBefore = startTimeBefore , StartTime = startTime , StartTimeAfter = startTimeAfter , EndTimeBefore = endTimeBefore , EndTime = endTime , EndTimeAfter = endTimeAfter , PageSize = pageSize , Limit = limit } ;
478+ var options = new ReadCallOptions ( ) { PathAccountSid = pathAccountSid , To = to , From = from , ParentCallSid = parentCallSid , Status = status , StartTimeBefore = startTimeBefore , StartTime = startTime , StartTimeAfter = startTimeAfter , EndTimeBefore = endTimeBefore , EndTime = endTime , EndTimeAfter = endTimeAfter , PageSize = pageSize , Limit = limit } ;
479479 return await ReadAsync ( options , client ) ;
480480 }
481481 #endif
0 commit comments