Sha256: 4b72e646d07a91b240a35e8bed7d0c0f9dc02fc7f09d34d142e115c95886b42f

Contents?: true

Size: 1.24 KB

Versions: 1

Compression:

Stored size: 1.24 KB

Contents

# OryHydraClient::TrustJwtGrantIssuerBody

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **allow_any_subject** | **Boolean** | The \"allow_any_subject\" indicates that the issuer is allowed to have any principal as the subject of the JWT. | [optional] |
| **expires_at** | **Time** | The \"expires_at\" indicates, when grant will expire, so we will reject assertion from \"issuer\" targeting \"subject\". |  |
| **issuer** | **String** | The \"issuer\" identifies the principal that issued the JWT assertion (same as \"iss\" claim in JWT). |  |
| **jwk** | [**JSONWebKey**](JSONWebKey.md) |  |  |
| **scope** | **Array<String>** | The \"scope\" contains list of scope values (as described in Section 3.3 of OAuth 2.0 [RFC6749]) |  |
| **subject** | **String** | The \"subject\" identifies the principal that is the subject of the JWT. | [optional] |

## Example

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

instance = OryHydraClient::TrustJwtGrantIssuerBody.new(
  allow_any_subject: null,
  expires_at: null,
  issuer: https://jwt-idp.example.com,
  jwk: null,
  scope: ["openid","offline"],
  subject: mike@example.com
)
```

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ory-hydra-client-1.11.8 docs/TrustJwtGrantIssuerBody.md