Sha256: c5df60778e586060445db075059ca588cfdba4278c0ce67d6e64f0a8683bfdd6

Contents?: true

Size: 1.03 KB

Versions: 4

Compression:

Stored size: 1.03 KB

Contents

# OryHydraClient::TrustJwtGrantIssuerBody

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **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. |  |

## Example

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

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

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
ory-hydra-client-1.11.7 docs/TrustJwtGrantIssuerBody.md
ory-hydra-client-1.11.6 docs/TrustJwtGrantIssuerBody.md
ory-hydra-client-1.11.5 docs/TrustJwtGrantIssuerBody.md
ory-hydra-client-1.11.4 docs/TrustJwtGrantIssuerBody.md