@@ -74,7 +74,10 @@ class MessageResult implements ModelInterface, ArrayAccess, \JsonSerializable
7474 'brand_id ' => 'string ' ,
7575 'campaign_id ' => 'string ' ,
7676 'segment_count ' => 'float ' ,
77- 'media_urls ' => 'string[] '
77+ 'media_urls ' => 'string[] ' ,
78+ 'tfn ' => '\FreeClimb\Api\Model\MessageResultAllOfTfn ' ,
79+ 'phone_number_id ' => 'string ' ,
80+ 'application_id ' => 'string '
7881 ];
7982
8083 /**
@@ -100,7 +103,10 @@ class MessageResult implements ModelInterface, ArrayAccess, \JsonSerializable
100103 'brand_id ' => null ,
101104 'campaign_id ' => null ,
102105 'segment_count ' => null ,
103- 'media_urls ' => 'uri '
106+ 'media_urls ' => 'uri ' ,
107+ 'tfn ' => null ,
108+ 'phone_number_id ' => null ,
109+ 'application_id ' => null
104110 ];
105111
106112 /**
@@ -124,7 +130,10 @@ class MessageResult implements ModelInterface, ArrayAccess, \JsonSerializable
124130 'brand_id ' => true ,
125131 'campaign_id ' => true ,
126132 'segment_count ' => true ,
127- 'media_urls ' => true
133+ 'media_urls ' => true ,
134+ 'tfn ' => true ,
135+ 'phone_number_id ' => true ,
136+ 'application_id ' => true
128137 ];
129138
130139 /**
@@ -228,7 +237,10 @@ public function isNullableSetToNull(string $property): bool
228237 'brand_id ' => 'brandId ' ,
229238 'campaign_id ' => 'campaignId ' ,
230239 'segment_count ' => 'segmentCount ' ,
231- 'media_urls ' => 'mediaUrls '
240+ 'media_urls ' => 'mediaUrls ' ,
241+ 'tfn ' => 'tfn ' ,
242+ 'phone_number_id ' => 'phoneNumberId ' ,
243+ 'application_id ' => 'applicationId '
232244 ];
233245
234246 /**
@@ -252,7 +264,10 @@ public function isNullableSetToNull(string $property): bool
252264 'brand_id ' => 'setBrandId ' ,
253265 'campaign_id ' => 'setCampaignId ' ,
254266 'segment_count ' => 'setSegmentCount ' ,
255- 'media_urls ' => 'setMediaUrls '
267+ 'media_urls ' => 'setMediaUrls ' ,
268+ 'tfn ' => 'setTfn ' ,
269+ 'phone_number_id ' => 'setPhoneNumberId ' ,
270+ 'application_id ' => 'setApplicationId '
256271 ];
257272
258273 /**
@@ -276,7 +291,10 @@ public function isNullableSetToNull(string $property): bool
276291 'brand_id ' => 'getBrandId ' ,
277292 'campaign_id ' => 'getCampaignId ' ,
278293 'segment_count ' => 'getSegmentCount ' ,
279- 'media_urls ' => 'getMediaUrls '
294+ 'media_urls ' => 'getMediaUrls ' ,
295+ 'tfn ' => 'getTfn ' ,
296+ 'phone_number_id ' => 'getPhoneNumberId ' ,
297+ 'application_id ' => 'getApplicationId '
280298 ];
281299
282300 /**
@@ -352,6 +370,9 @@ public function __construct(?array $data = null)
352370 $ this ->setIfExists ('campaign_id ' , $ data ?? [], null );
353371 $ this ->setIfExists ('segment_count ' , $ data ?? [], null );
354372 $ this ->setIfExists ('media_urls ' , $ data ?? [], null );
373+ $ this ->setIfExists ('tfn ' , $ data ?? [], null );
374+ $ this ->setIfExists ('phone_number_id ' , $ data ?? [], null );
375+ $ this ->setIfExists ('application_id ' , $ data ?? [], null );
355376 }
356377
357378 /**
@@ -911,6 +932,108 @@ public function setMediaUrls($media_urls)
911932
912933 return $ this ;
913934 }
935+
936+ /**
937+ * Gets tfn
938+ *
939+ * @return \FreeClimb\Api\Model\MessageResultAllOfTfn|null
940+ */
941+ public function getTfn ()
942+ {
943+ return $ this ->container ['tfn ' ];
944+ }
945+
946+ /**
947+ * Sets tfn
948+ *
949+ * @param \FreeClimb\Api\Model\MessageResultAllOfTfn|null $tfn tfn
950+ *
951+ * @return self
952+ */
953+ public function setTfn ($ tfn )
954+ {
955+ if (is_null ($ tfn )) {
956+ array_push ($ this ->openAPINullablesSetToNull , 'tfn ' );
957+ } else {
958+ $ nullablesSetToNull = $ this ->getOpenAPINullablesSetToNull ();
959+ $ index = array_search ('tfn ' , $ nullablesSetToNull , true );
960+ if ($ index !== false ) {
961+ unset($ nullablesSetToNull [$ index ]);
962+ $ this ->setOpenAPINullablesSetToNull ($ nullablesSetToNull );
963+ }
964+ }
965+ $ this ->container ['tfn ' ] = $ tfn ;
966+
967+ return $ this ;
968+ }
969+
970+ /**
971+ * Gets phone_number_id
972+ *
973+ * @return string|null
974+ */
975+ public function getPhoneNumberId ()
976+ {
977+ return $ this ->container ['phone_number_id ' ];
978+ }
979+
980+ /**
981+ * Sets phone_number_id
982+ *
983+ * @param string|null $phone_number_id String that uniquely identifies the phoneNumber resource used to send this Message
984+ *
985+ * @return self
986+ */
987+ public function setPhoneNumberId ($ phone_number_id )
988+ {
989+ if (is_null ($ phone_number_id )) {
990+ array_push ($ this ->openAPINullablesSetToNull , 'phone_number_id ' );
991+ } else {
992+ $ nullablesSetToNull = $ this ->getOpenAPINullablesSetToNull ();
993+ $ index = array_search ('phone_number_id ' , $ nullablesSetToNull , true );
994+ if ($ index !== false ) {
995+ unset($ nullablesSetToNull [$ index ]);
996+ $ this ->setOpenAPINullablesSetToNull ($ nullablesSetToNull );
997+ }
998+ }
999+ $ this ->container ['phone_number_id ' ] = $ phone_number_id ;
1000+
1001+ return $ this ;
1002+ }
1003+
1004+ /**
1005+ * Gets application_id
1006+ *
1007+ * @return string|null
1008+ */
1009+ public function getApplicationId ()
1010+ {
1011+ return $ this ->container ['application_id ' ];
1012+ }
1013+
1014+ /**
1015+ * Sets application_id
1016+ *
1017+ * @param string|null $application_id String that uniquely identifies the Application resource used to send this Message
1018+ *
1019+ * @return self
1020+ */
1021+ public function setApplicationId ($ application_id )
1022+ {
1023+ if (is_null ($ application_id )) {
1024+ array_push ($ this ->openAPINullablesSetToNull , 'application_id ' );
1025+ } else {
1026+ $ nullablesSetToNull = $ this ->getOpenAPINullablesSetToNull ();
1027+ $ index = array_search ('application_id ' , $ nullablesSetToNull , true );
1028+ if ($ index !== false ) {
1029+ unset($ nullablesSetToNull [$ index ]);
1030+ $ this ->setOpenAPINullablesSetToNull ($ nullablesSetToNull );
1031+ }
1032+ }
1033+ $ this ->container ['application_id ' ] = $ application_id ;
1034+
1035+ return $ this ;
1036+ }
9141037 /**
9151038 * Returns true if offset exists. False otherwise.
9161039 *
0 commit comments