ShareCollectionRequest

Properties

Name

Type

Description

Notes

permissions

List[str]

Individual permission levels defining the sharing rule.

[optional]

Example

from h2ogpte.rest_sync.models.share_collection_request import ShareCollectionRequest

# TODO update the JSON string below
json = "{}"
# create an instance of ShareCollectionRequest from a JSON string
share_collection_request_instance = ShareCollectionRequest.from_json(json)
# print the JSON string representation of the object
print(ShareCollectionRequest.to_json())

# convert the object into a dict
share_collection_request_dict = share_collection_request_instance.to_dict()
# create an instance of ShareCollectionRequest from a dict
share_collection_request_from_dict = ShareCollectionRequest.from_dict(share_collection_request_dict)