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
A message that gets sent to users requesting help.
[optional]
age_gated_content
bool
Indicates whether the content is age-gated.
[optional]
cv_token
str
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. Supplying an empty string will likely result in rejection.
[optional]
Example
frombandwidth.models.verification_update_requestimportVerificationUpdateRequest# TODO update the JSON string belowjson="{}"# create an instance of VerificationUpdateRequest from a JSON stringverification_update_request_instance=VerificationUpdateRequest.from_json(json)
# print the JSON string representation of the objectprint(VerificationUpdateRequest.to_json())
# convert the object into a dictverification_update_request_dict=verification_update_request_instance.to_dict()
# create an instance of VerificationUpdateRequest from a dictverification_update_request_from_dict=VerificationUpdateRequest.from_dict(verification_update_request_dict)