Sha256: 094273a2427f5e38f9990f1db40d4fcc37435cb4b0dd02fe0b5a207a41c1a8c0

Contents?: true

Size: 1.55 KB

Versions: 8

Compression:

Stored size: 1.55 KB

Contents

# OryHydraClient::TrustedOAuth2JwtGrantIssuer

## 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] |
| **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** | [**TrustedOAuth2JwtGrantJsonWebKey**](TrustedOAuth2JwtGrantJsonWebKey.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::TrustedOAuth2JwtGrantIssuer.new(
  allow_any_subject: null,
  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

8 entries across 8 versions & 1 rubygems

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