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
Whether the field is displayed: true or false value
[optional] [default to True]
Example
frombsg_api.models.contact_field_update_request_option_is_visibleimportContactFieldUpdateRequestOptionIsVisible# TODO update the JSON string belowjson="{}"# create an instance of ContactFieldUpdateRequestOptionIsVisible from a JSON stringcontact_field_update_request_option_is_visible_instance=ContactFieldUpdateRequestOptionIsVisible.from_json(json)
# print the JSON string representation of the objectprint(ContactFieldUpdateRequestOptionIsVisible.to_json())
# convert the object into a dictcontact_field_update_request_option_is_visible_dict=contact_field_update_request_option_is_visible_instance.to_dict()
# create an instance of ContactFieldUpdateRequestOptionIsVisible from a dictcontact_field_update_request_option_is_visible_from_dict=ContactFieldUpdateRequestOptionIsVisible.from_dict(contact_field_update_request_option_is_visible_dict)