Sha256: 0a3e910308109f9d5834cc25237b1158bc0b9d848172ead0428f1ae8f1479935

Contents?: true

Size: 1.31 KB

Versions: 4

Compression:

Stored size: 1.31 KB

Contents

# OryHydraClient::TrustedJwtGrantIssuer

## Properties

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

## Example

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

instance = OryHydraClient::TrustedJwtGrantIssuer.new(
  created_at: null,
  expires_at: null,
  id: 9edc811f-4e28-453c-9b46-4de65f00217f,
  issuer: https://jwt-idp.example.com,
  public_key: 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/TrustedJwtGrantIssuer.md
ory-hydra-client-1.11.6 docs/TrustedJwtGrantIssuer.md
ory-hydra-client-1.11.5 docs/TrustedJwtGrantIssuer.md
ory-hydra-client-1.11.4 docs/TrustedJwtGrantIssuer.md