Sha256: 7a5736248fd41cb3758edb36bb762cf4b6d8cdf744d8ef43fdb9b2cd34bd3772
Contents?: true
Size: 1.23 KB
Versions: 20
Compression:
Stored size: 1.23 KB
Contents
# OryClient::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-client' instance = OryClient::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
20 entries across 20 versions & 1 rubygems