Sha256: fa1a5a4fd85ae0dc580b788f66ab6a8d625ffb64ed0713cf2e4163ca331d2c47

Contents?: true

Size: 1.04 KB

Versions: 7

Compression:

Stored size: 1.04 KB

Contents

# OryHydraClient::OAuth2LogoutRequest

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **challenge** | **String** | Challenge is the identifier (\"logout challenge\") of the logout authentication request. It is used to identify the session. | [optional] |
| **client** | [**OAuth2Client**](OAuth2Client.md) |  | [optional] |
| **request_url** | **String** | RequestURL is the original Logout URL requested. | [optional] |
| **rp_initiated** | **Boolean** | RPInitiated is set to true if the request was initiated by a Relying Party (RP), also known as an OAuth 2.0 Client. | [optional] |
| **sid** | **String** | SessionID is the login session ID that was requested to log out. | [optional] |
| **subject** | **String** | Subject is the user for whom the logout was request. | [optional] |

## Example

```ruby
require 'ory-hydra-client'

instance = OryHydraClient::OAuth2LogoutRequest.new(
  challenge: null,
  client: null,
  request_url: null,
  rp_initiated: null,
  sid: null,
  subject: null
)
```

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
ory-hydra-client-2.2.1 docs/OAuth2LogoutRequest.md
ory-hydra-client-2.2.0 docs/OAuth2LogoutRequest.md
ory-hydra-client-2.2.0.rc3 docs/OAuth2LogoutRequest.md
ory-hydra-client-2.1.1 docs/OAuth2LogoutRequest.md
ory-hydra-client-2.1.0 docs/OAuth2LogoutRequest.md
ory-hydra-client-2.0.2 docs/OAuth2LogoutRequest.md
ory-hydra-client-2.0.1 docs/OAuth2LogoutRequest.md