# 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 ) ```