docs/OryAccessControlPolicyAllowedInput.md in ory-keto-client-0.0.0.alpha46 vs docs/OryAccessControlPolicyAllowedInput.md in ory-keto-client-0.0.0.alpha47
- old
+ new
@@ -1,23 +1,24 @@
# OryHydraClient::OryAccessControlPolicyAllowedInput
## Properties
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**action** | **String** | Action is the action that is requested on the resource. | [optional]
-**context** | [**Object**](.md) | Context is the request's environmental context. | [optional]
-**resource** | **String** | Resource is the resource that access is requested to. | [optional]
-**subject** | **String** | Subject is the subject that is requesting access. | [optional]
+| Name | Type | Description | Notes |
+| ---- | ---- | ----------- | ----- |
+| **action** | **String** | Action is the action that is requested on the resource. | [optional] |
+| **context** | **Object** | Context is the request's environmental context. | [optional] |
+| **resource** | **String** | Resource is the resource that access is requested to. | [optional] |
+| **subject** | **String** | Subject is the subject that is requesting access. | [optional] |
-## Code Sample
+## Example
```ruby
-require 'OryHydraClient'
+require 'ory-keto-client'
-instance = OryHydraClient::OryAccessControlPolicyAllowedInput.new(action: null,
- context: null,
- resource: null,
- subject: null)
+instance = OryHydraClient::OryAccessControlPolicyAllowedInput.new(
+ action: null,
+ context: null,
+ resource: null,
+ subject: null
+)
```
-