Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
4 changes: 2 additions & 2 deletions docs/AbstractType.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ json = "{}"
# create an instance of AbstractType from a JSON string
abstract_type_instance = AbstractType.from_json(json)
# print the JSON string representation of the object
print(AbstractType.to_json())
print AbstractType.to_json()

# convert the object into a dict
abstract_type_dict = abstract_type_instance.to_dict()
# create an instance of AbstractType from a dict
abstract_type_from_dict = AbstractType.from_dict(abstract_type_dict)
abstract_type_form_dict = abstract_type.from_dict(abstract_type_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

Expand Down
4 changes: 2 additions & 2 deletions docs/Any.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ json = "{}"
# create an instance of Any from a JSON string
any_instance = Any.from_json(json)
# print the JSON string representation of the object
print(Any.to_json())
print Any.to_json()

# convert the object into a dict
any_dict = any_instance.to_dict()
# create an instance of Any from a dict
any_from_dict = Any.from_dict(any_dict)
any_form_dict = any.from_dict(any_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

Expand Down
4 changes: 2 additions & 2 deletions docs/Argument.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ json = "{}"
# create an instance of Argument from a JSON string
argument_instance = Argument.from_json(json)
# print the JSON string representation of the object
print(Argument.to_json())
print Argument.to_json()

# convert the object into a dict
argument_dict = argument_instance.to_dict()
# create an instance of Argument from a dict
argument_from_dict = Argument.from_dict(argument_dict)
argument_form_dict = argument.from_dict(argument_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

Expand Down
4 changes: 2 additions & 2 deletions docs/Attribute.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ json = "{}"
# create an instance of Attribute from a JSON string
attribute_instance = Attribute.from_json(json)
# print the JSON string representation of the object
print(Attribute.to_json())
print Attribute.to_json()

# convert the object into a dict
attribute_dict = attribute_instance.to_dict()
# create an instance of Attribute from a dict
attribute_from_dict = Attribute.from_dict(attribute_dict)
attribute_form_dict = attribute.from_dict(attribute_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

Expand Down
4 changes: 2 additions & 2 deletions docs/AttributeDefinition.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ json = "{}"
# create an instance of AttributeDefinition from a JSON string
attribute_definition_instance = AttributeDefinition.from_json(json)
# print the JSON string representation of the object
print(AttributeDefinition.to_json())
print AttributeDefinition.to_json()

# convert the object into a dict
attribute_definition_dict = attribute_definition_instance.to_dict()
# create an instance of AttributeDefinition from a dict
attribute_definition_from_dict = AttributeDefinition.from_dict(attribute_definition_dict)
attribute_definition_form_dict = attribute_definition.from_dict(attribute_definition_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

Expand Down
4 changes: 2 additions & 2 deletions docs/AttributeFilter.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ json = "{}"
# create an instance of AttributeFilter from a JSON string
attribute_filter_instance = AttributeFilter.from_json(json)
# print the JSON string representation of the object
print(AttributeFilter.to_json())
print AttributeFilter.to_json()

# convert the object into a dict
attribute_filter_dict = attribute_filter_instance.to_dict()
# create an instance of AttributeFilter from a dict
attribute_filter_from_dict = AttributeFilter.from_dict(attribute_filter_dict)
attribute_filter_form_dict = attribute_filter.from_dict(attribute_filter_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

Expand Down
4 changes: 2 additions & 2 deletions docs/AttributeReadRequestMetadata.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ json = "{}"
# create an instance of AttributeReadRequestMetadata from a JSON string
attribute_read_request_metadata_instance = AttributeReadRequestMetadata.from_json(json)
# print the JSON string representation of the object
print(AttributeReadRequestMetadata.to_json())
print AttributeReadRequestMetadata.to_json()

# convert the object into a dict
attribute_read_request_metadata_dict = attribute_read_request_metadata_instance.to_dict()
# create an instance of AttributeReadRequestMetadata from a dict
attribute_read_request_metadata_from_dict = AttributeReadRequestMetadata.from_dict(attribute_read_request_metadata_dict)
attribute_read_request_metadata_form_dict = attribute_read_request_metadata.from_dict(attribute_read_request_metadata_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

Expand Down
4 changes: 2 additions & 2 deletions docs/AttributeReadResponse.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ json = "{}"
# create an instance of AttributeReadResponse from a JSON string
attribute_read_response_instance = AttributeReadResponse.from_json(json)
# print the JSON string representation of the object
print(AttributeReadResponse.to_json())
print AttributeReadResponse.to_json()

# convert the object into a dict
attribute_read_response_dict = attribute_read_response_instance.to_dict()
# create an instance of AttributeReadResponse from a dict
attribute_read_response_from_dict = AttributeReadResponse.from_dict(attribute_read_response_dict)
attribute_read_response_form_dict = attribute_read_response.from_dict(attribute_read_response_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

Expand Down
19 changes: 3 additions & 16 deletions docs/AttributeType.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,10 @@

Enumerates the types of attribute. - ATTRIBUTE_TYPE_BOOLEAN: A boolean attribute type. - ATTRIBUTE_TYPE_BOOLEAN_ARRAY: A boolean array attribute type. - ATTRIBUTE_TYPE_STRING: A string attribute type. - ATTRIBUTE_TYPE_STRING_ARRAY: A string array attribute type. - ATTRIBUTE_TYPE_INTEGER: An integer attribute type. - ATTRIBUTE_TYPE_INTEGER_ARRAY: An integer array attribute type. - ATTRIBUTE_TYPE_DOUBLE: A double attribute type. - ATTRIBUTE_TYPE_DOUBLE_ARRAY: A double array attribute type.

## Enum
## Properties

* `ATTRIBUTE_TYPE_BOOLEAN` (value: `'ATTRIBUTE_TYPE_BOOLEAN'`)

* `ATTRIBUTE_TYPE_BOOLEAN_ARRAY` (value: `'ATTRIBUTE_TYPE_BOOLEAN_ARRAY'`)

* `ATTRIBUTE_TYPE_STRING` (value: `'ATTRIBUTE_TYPE_STRING'`)

* `ATTRIBUTE_TYPE_STRING_ARRAY` (value: `'ATTRIBUTE_TYPE_STRING_ARRAY'`)

* `ATTRIBUTE_TYPE_INTEGER` (value: `'ATTRIBUTE_TYPE_INTEGER'`)

* `ATTRIBUTE_TYPE_INTEGER_ARRAY` (value: `'ATTRIBUTE_TYPE_INTEGER_ARRAY'`)

* `ATTRIBUTE_TYPE_DOUBLE` (value: `'ATTRIBUTE_TYPE_DOUBLE'`)

* `ATTRIBUTE_TYPE_DOUBLE_ARRAY` (value: `'ATTRIBUTE_TYPE_DOUBLE_ARRAY'`)
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

Expand Down
6 changes: 6 additions & 0 deletions docs/BundleApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ delete bundle


```python
import time
import os
import permify
from permify.models.bundle_delete_body import BundleDeleteBody
from permify.models.bundle_delete_response import BundleDeleteResponse
Expand Down Expand Up @@ -88,6 +90,8 @@ read bundle


```python
import time
import os
import permify
from permify.models.bundle_read_body import BundleReadBody
from permify.models.bundle_read_response import BundleReadResponse
Expand Down Expand Up @@ -158,6 +162,8 @@ write bundle


```python
import time
import os
import permify
from permify.models.bundle_write_body import BundleWriteBody
from permify.models.bundle_write_response import BundleWriteResponse
Expand Down
4 changes: 2 additions & 2 deletions docs/BundleDeleteBody.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ json = "{}"
# create an instance of BundleDeleteBody from a JSON string
bundle_delete_body_instance = BundleDeleteBody.from_json(json)
# print the JSON string representation of the object
print(BundleDeleteBody.to_json())
print BundleDeleteBody.to_json()

# convert the object into a dict
bundle_delete_body_dict = bundle_delete_body_instance.to_dict()
# create an instance of BundleDeleteBody from a dict
bundle_delete_body_from_dict = BundleDeleteBody.from_dict(bundle_delete_body_dict)
bundle_delete_body_form_dict = bundle_delete_body.from_dict(bundle_delete_body_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

Expand Down
4 changes: 2 additions & 2 deletions docs/BundleDeleteResponse.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ json = "{}"
# create an instance of BundleDeleteResponse from a JSON string
bundle_delete_response_instance = BundleDeleteResponse.from_json(json)
# print the JSON string representation of the object
print(BundleDeleteResponse.to_json())
print BundleDeleteResponse.to_json()

# convert the object into a dict
bundle_delete_response_dict = bundle_delete_response_instance.to_dict()
# create an instance of BundleDeleteResponse from a dict
bundle_delete_response_from_dict = BundleDeleteResponse.from_dict(bundle_delete_response_dict)
bundle_delete_response_form_dict = bundle_delete_response.from_dict(bundle_delete_response_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

Expand Down
4 changes: 2 additions & 2 deletions docs/BundleReadBody.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ json = "{}"
# create an instance of BundleReadBody from a JSON string
bundle_read_body_instance = BundleReadBody.from_json(json)
# print the JSON string representation of the object
print(BundleReadBody.to_json())
print BundleReadBody.to_json()

# convert the object into a dict
bundle_read_body_dict = bundle_read_body_instance.to_dict()
# create an instance of BundleReadBody from a dict
bundle_read_body_from_dict = BundleReadBody.from_dict(bundle_read_body_dict)
bundle_read_body_form_dict = bundle_read_body.from_dict(bundle_read_body_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

Expand Down
4 changes: 2 additions & 2 deletions docs/BundleReadResponse.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ json = "{}"
# create an instance of BundleReadResponse from a JSON string
bundle_read_response_instance = BundleReadResponse.from_json(json)
# print the JSON string representation of the object
print(BundleReadResponse.to_json())
print BundleReadResponse.to_json()

# convert the object into a dict
bundle_read_response_dict = bundle_read_response_instance.to_dict()
# create an instance of BundleReadResponse from a dict
bundle_read_response_from_dict = BundleReadResponse.from_dict(bundle_read_response_dict)
bundle_read_response_form_dict = bundle_read_response.from_dict(bundle_read_response_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

Expand Down
4 changes: 2 additions & 2 deletions docs/BundleRunResponse.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ json = "{}"
# create an instance of BundleRunResponse from a JSON string
bundle_run_response_instance = BundleRunResponse.from_json(json)
# print the JSON string representation of the object
print(BundleRunResponse.to_json())
print BundleRunResponse.to_json()

# convert the object into a dict
bundle_run_response_dict = bundle_run_response_instance.to_dict()
# create an instance of BundleRunResponse from a dict
bundle_run_response_from_dict = BundleRunResponse.from_dict(bundle_run_response_dict)
bundle_run_response_form_dict = bundle_run_response.from_dict(bundle_run_response_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

Expand Down
4 changes: 2 additions & 2 deletions docs/BundleWriteBody.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ json = "{}"
# create an instance of BundleWriteBody from a JSON string
bundle_write_body_instance = BundleWriteBody.from_json(json)
# print the JSON string representation of the object
print(BundleWriteBody.to_json())
print BundleWriteBody.to_json()

# convert the object into a dict
bundle_write_body_dict = bundle_write_body_instance.to_dict()
# create an instance of BundleWriteBody from a dict
bundle_write_body_from_dict = BundleWriteBody.from_dict(bundle_write_body_dict)
bundle_write_body_form_dict = bundle_write_body.from_dict(bundle_write_body_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

Expand Down
4 changes: 2 additions & 2 deletions docs/BundleWriteResponse.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ json = "{}"
# create an instance of BundleWriteResponse from a JSON string
bundle_write_response_instance = BundleWriteResponse.from_json(json)
# print the JSON string representation of the object
print(BundleWriteResponse.to_json())
print BundleWriteResponse.to_json()

# convert the object into a dict
bundle_write_response_dict = bundle_write_response_instance.to_dict()
# create an instance of BundleWriteResponse from a dict
bundle_write_response_from_dict = BundleWriteResponse.from_dict(bundle_write_response_dict)
bundle_write_response_form_dict = bundle_write_response.from_dict(bundle_write_response_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

Expand Down
4 changes: 2 additions & 2 deletions docs/CheckBody.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ json = "{}"
# create an instance of CheckBody from a JSON string
check_body_instance = CheckBody.from_json(json)
# print the JSON string representation of the object
print(CheckBody.to_json())
print CheckBody.to_json()

# convert the object into a dict
check_body_dict = check_body_instance.to_dict()
# create an instance of CheckBody from a dict
check_body_from_dict = CheckBody.from_dict(check_body_dict)
check_body_form_dict = check_body.from_dict(check_body_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

Expand Down
7 changes: 3 additions & 4 deletions docs/CheckResult.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@

Enumerates results of a check operation. - CHECK_RESULT_ALLOWED: Represents a successful check (the check allowed the operation). - CHECK_RESULT_DENIED: Represents a failed check (the check denied the operation).

## Enum
## Properties

* `CHECK_RESULT_ALLOWED` (value: `'CHECK_RESULT_ALLOWED'`)

* `CHECK_RESULT_DENIED` (value: `'CHECK_RESULT_DENIED'`)
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

Expand Down
4 changes: 2 additions & 2 deletions docs/CheckedExpr.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ json = "{}"
# create an instance of CheckedExpr from a JSON string
checked_expr_instance = CheckedExpr.from_json(json)
# print the JSON string representation of the object
print(CheckedExpr.to_json())
print CheckedExpr.to_json()

# convert the object into a dict
checked_expr_dict = checked_expr_instance.to_dict()
# create an instance of CheckedExpr from a dict
checked_expr_from_dict = CheckedExpr.from_dict(checked_expr_dict)
checked_expr_form_dict = checked_expr.from_dict(checked_expr_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

Expand Down
4 changes: 2 additions & 2 deletions docs/Child.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ json = "{}"
# create an instance of Child from a JSON string
child_instance = Child.from_json(json)
# print the JSON string representation of the object
print(Child.to_json())
print Child.to_json()

# convert the object into a dict
child_dict = child_instance.to_dict()
# create an instance of Child from a dict
child_from_dict = Child.from_dict(child_dict)
child_form_dict = child.from_dict(child_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

Expand Down
4 changes: 2 additions & 2 deletions docs/Comprehension.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ json = "{}"
# create an instance of Comprehension from a JSON string
comprehension_instance = Comprehension.from_json(json)
# print the JSON string representation of the object
print(Comprehension.to_json())
print Comprehension.to_json()

# convert the object into a dict
comprehension_dict = comprehension_instance.to_dict()
# create an instance of Comprehension from a dict
comprehension_from_dict = Comprehension.from_dict(comprehension_dict)
comprehension_form_dict = comprehension.from_dict(comprehension_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

Expand Down
4 changes: 2 additions & 2 deletions docs/ComputedAttribute.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ json = "{}"
# create an instance of ComputedAttribute from a JSON string
computed_attribute_instance = ComputedAttribute.from_json(json)
# print the JSON string representation of the object
print(ComputedAttribute.to_json())
print ComputedAttribute.to_json()

# convert the object into a dict
computed_attribute_dict = computed_attribute_instance.to_dict()
# create an instance of ComputedAttribute from a dict
computed_attribute_from_dict = ComputedAttribute.from_dict(computed_attribute_dict)
computed_attribute_form_dict = computed_attribute.from_dict(computed_attribute_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

Expand Down
4 changes: 2 additions & 2 deletions docs/ComputedUserSet.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ json = "{}"
# create an instance of ComputedUserSet from a JSON string
computed_user_set_instance = ComputedUserSet.from_json(json)
# print the JSON string representation of the object
print(ComputedUserSet.to_json())
print ComputedUserSet.to_json()

# convert the object into a dict
computed_user_set_dict = computed_user_set_instance.to_dict()
# create an instance of ComputedUserSet from a dict
computed_user_set_from_dict = ComputedUserSet.from_dict(computed_user_set_dict)
computed_user_set_form_dict = computed_user_set.from_dict(computed_user_set_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

Expand Down
4 changes: 2 additions & 2 deletions docs/Constant.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ json = "{}"
# create an instance of Constant from a JSON string
constant_instance = Constant.from_json(json)
# print the JSON string representation of the object
print(Constant.to_json())
print Constant.to_json()

# convert the object into a dict
constant_dict = constant_instance.to_dict()
# create an instance of Constant from a dict
constant_from_dict = Constant.from_dict(constant_dict)
constant_form_dict = constant.from_dict(constant_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

Expand Down
Loading