github.com/treeverse/lakefs@v1.24.1-0.20240520134607-95648127bfb0/clients/python/docs/ErrorNoACL.md (about)

     1  # ErrorNoACL
     2  
     3  
     4  ## Properties
     5  
     6  Name | Type | Description | Notes
     7  ------------ | ------------- | ------------- | -------------
     8  **message** | **str** | short message explaining the error | 
     9  **no_acl** | **bool** | true if the group exists but has no ACL | [optional] 
    10  
    11  ## Example
    12  
    13  ```python
    14  from lakefs_sdk.models.error_no_acl import ErrorNoACL
    15  
    16  # TODO update the JSON string below
    17  json = "{}"
    18  # create an instance of ErrorNoACL from a JSON string
    19  error_no_acl_instance = ErrorNoACL.from_json(json)
    20  # print the JSON string representation of the object
    21  print ErrorNoACL.to_json()
    22  
    23  # convert the object into a dict
    24  error_no_acl_dict = error_no_acl_instance.to_dict()
    25  # create an instance of ErrorNoACL from a dict
    26  error_no_acl_form_dict = error_no_acl.from_dict(error_no_acl_dict)
    27  ```
    28  [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
    29  
    30