Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.33 KB

PermissionExpandRequestMetadata.md

File metadata and controls

31 lines (22 loc) · 1.33 KB

PermissionExpandRequestMetadata

PermissionExpandRequestMetadata metadata for the PermissionExpandRequest.

Properties

Name Type Description Notes
schema_version str Version of the schema. [optional]
snap_token str The snap token to avoid stale cache, see more details on Snap Tokens. [optional]

Example

from permify.models.permission_expand_request_metadata import PermissionExpandRequestMetadata

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

# convert the object into a dict
permission_expand_request_metadata_dict = permission_expand_request_metadata_instance.to_dict()
# create an instance of PermissionExpandRequestMetadata from a dict
permission_expand_request_metadata_from_dict = PermissionExpandRequestMetadata.from_dict(permission_expand_request_metadata_dict)

[Back to Model list] [Back to API list] [Back to README]