# UpdateExtractorPrivacyRequest ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **is_public** | **bool** | A flag specifying whether a extractor is private or public. | ## Example ```python from h2ogpte.rest_async.models.update_extractor_privacy_request import UpdateExtractorPrivacyRequest # TODO update the JSON string below json = "{}" # create an instance of UpdateExtractorPrivacyRequest from a JSON string update_extractor_privacy_request_instance = UpdateExtractorPrivacyRequest.from_json(json) # print the JSON string representation of the object print(UpdateExtractorPrivacyRequest.to_json()) # convert the object into a dict update_extractor_privacy_request_dict = update_extractor_privacy_request_instance.to_dict() # create an instance of UpdateExtractorPrivacyRequest from a dict update_extractor_privacy_request_from_dict = UpdateExtractorPrivacyRequest.from_dict(update_extractor_privacy_request_dict) ```