Sha256: a2a6b3db1543eb32e869a046493e889781c0b01cc676fd88a9a8eeadef01b64c

Contents?: true

Size: 1.5 KB

Versions: 20

Compression:

Stored size: 1.5 KB

Contents

# OryClient::TrustedJwtGrantIssuer

## 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** | [**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-client'

instance = OryClient::TrustedJwtGrantIssuer.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

20 entries across 20 versions & 1 rubygems

Version Path
ory-client-0.2.0.alpha48 docs/TrustedJwtGrantIssuer.md
ory-client-0.2.0.alpha47 docs/TrustedJwtGrantIssuer.md
ory-client-0.2.0.alpha46 docs/TrustedJwtGrantIssuer.md
ory-client-0.2.0.alpha45 docs/TrustedJwtGrantIssuer.md
ory-client-0.2.0.alpha44 docs/TrustedJwtGrantIssuer.md
ory-client-0.2.0.alpha43 docs/TrustedJwtGrantIssuer.md
ory-client-0.2.0.alpha42 docs/TrustedJwtGrantIssuer.md
ory-client-0.2.0.alpha41 docs/TrustedJwtGrantIssuer.md
ory-client-0.2.0.alpha40 docs/TrustedJwtGrantIssuer.md
ory-client-0.2.0.alpha39 docs/TrustedJwtGrantIssuer.md
ory-client-0.2.0.alpha38 docs/TrustedJwtGrantIssuer.md
ory-client-0.2.0.alpha37 docs/TrustedJwtGrantIssuer.md
ory-client-0.2.0.alpha36 docs/TrustedJwtGrantIssuer.md
ory-client-0.2.0.alpha35 docs/TrustedJwtGrantIssuer.md
ory-client-0.2.0.alpha34 docs/TrustedJwtGrantIssuer.md
ory-client-0.2.0.alpha33 docs/TrustedJwtGrantIssuer.md
ory-client-0.2.0.alpha32 docs/TrustedJwtGrantIssuer.md
ory-client-0.2.0.alpha31 docs/TrustedJwtGrantIssuer.md
ory-client-0.2.0.alpha30 docs/TrustedJwtGrantIssuer.md
ory-client-0.2.0.alpha29 docs/TrustedJwtGrantIssuer.md