@@ -398,34 +398,30 @@ export class FeedbackCallSummaryInstance {
398398 /**
399399 * Provide a user-friendly representation
400400 *
401- * @returns String
401+ * @returns Object
402402 */
403403 toJSON ( ) {
404- return JSON . stringify (
405- {
406- accountSid : this . accountSid ,
407- sid : this . sid ,
408- testString : this . testString ,
409- testInteger : this . testInteger ,
410- testObject : this . testObject ,
411- testDateTime : this . testDateTime ,
412- testNumber : this . testNumber ,
413- from : this . from ,
414- priceUnit : this . priceUnit ,
415- testNumberFloat : this . testNumberFloat ,
416- testNumberDecimal : this . testNumberDecimal ,
417- testEnum : this . testEnum ,
418- a2pProfileBundleSid : this . a2pProfileBundleSid ,
419- testArrayOfIntegers : this . testArrayOfIntegers ,
420- testArrayOfArrayOfIntegers : this . testArrayOfArrayOfIntegers ,
421- testArrayOfObjects : this . testArrayOfObjects ,
422- testArrayOfEnum : this . testArrayOfEnum ,
423- status : this . status ,
424- message : this . message ,
425- } ,
426- null ,
427- 2 ,
428- ) ;
404+ return {
405+ accountSid : this . accountSid ,
406+ sid : this . sid ,
407+ testString : this . testString ,
408+ testInteger : this . testInteger ,
409+ testObject : this . testObject ,
410+ testDateTime : this . testDateTime ,
411+ testNumber : this . testNumber ,
412+ from : this . from ,
413+ priceUnit : this . priceUnit ,
414+ testNumberFloat : this . testNumberFloat ,
415+ testNumberDecimal : this . testNumberDecimal ,
416+ testEnum : this . testEnum ,
417+ a2pProfileBundleSid : this . a2pProfileBundleSid ,
418+ testArrayOfIntegers : this . testArrayOfIntegers ,
419+ testArrayOfArrayOfIntegers : this . testArrayOfArrayOfIntegers ,
420+ testArrayOfObjects : this . testArrayOfObjects ,
421+ testArrayOfEnum : this . testArrayOfEnum ,
422+ status : this . status ,
423+ message : this . message ,
424+ } ;
429425 }
430426
431427 [ inspect . custom ] ( _depth : any , options : InspectOptions ) {
0 commit comments