You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|**blocked**|**Boolean**| Whether a Toll-Free Verification is blocked. This attribute will only be defined when the number is blocked. |[optional]|
19
19
|**blockedReason**|**String**| The reason why the Toll-Free Verification is blocked. This attribute will only be defined when the number is blocked. |[optional]|
20
+
|**cvToken**|**String**| The token provided by Campaign Verify to validate your political use case. Only required for 527 political organizations. If you are not a 527 political organization, this field should be omitted. If you pass an empty string, it will be passed along and potentially rejected. |[optional]|
|**helpMessageResponse**|**String**| A message that gets sent to users requesting help. |[optional]|
27
27
|**ageGatedContent**|**Boolean**| Indicates whether the content is age-gated. |[optional]|
28
+
|**cvToken**|**String**| The token provided by Campaign Verify to validate your political use case. Only required for 527 political organizations. If you are not a 527 political organization, this field should be omitted. If you pass an empty string, it will be passed along and potentially rejected. |[optional]|
|**helpMessageResponse**|**String**| A message that gets sent to users requesting help. |[optional]|
26
26
|**ageGatedContent**|**Boolean**| Indicates whether the content is age-gated. |[optional]|
27
+
|**cvToken**|**String**| The token provided by Campaign Verify to validate your political use case. Only required for 527 political organizations. If you are not a 527 political organization, this field should be omitted. If you pass an empty string, it will be passed along and potentially rejected. |[optional]|
* The token provided by Campaign Verify to validate your political use case. Only required for 527 political organizations. If you are not a 527 political organization, this field should be omitted. If you pass an empty string, it will be passed along and potentially rejected.
if ((jsonObj.get("blockedReason") != null && !jsonObj.get("blockedReason").isJsonNull()) && !jsonObj.get("blockedReason").isJsonPrimitive()) {
447
485
thrownewIllegalArgumentException(String.format(Locale.ROOT, "Expected the field `blockedReason` to be a primitive type in the JSON string but got `%s`", jsonObj.get("blockedReason").toString()));
448
486
}
487
+
if ((jsonObj.get("cvToken") != null && !jsonObj.get("cvToken").isJsonNull()) && !jsonObj.get("cvToken").isJsonPrimitive()) {
488
+
thrownewIllegalArgumentException(String.format(Locale.ROOT, "Expected the field `cvToken` to be a primitive type in the JSON string but got `%s`", jsonObj.get("cvToken").toString()));
0 commit comments