#### [Abblix\.Oidc\.Server](https://www.abblix.com/en/docs/api/abblix-oidc-server 'index')
### [Abblix\.Oidc\.Server\.Features\.Tokens](https://www.abblix.com/en/docs/api/abblix-oidc-server/Abblix.Oidc.Server.Features.Tokens 'Abblix\.Oidc\.Server\.Features\.Tokens')

## EncodedJsonWebToken Class

Represents an encoded JSON Web Token \(JWT\) along with its decoded model representation\.

```csharp
public record EncodedJsonWebToken : System.IEquatable<Abblix.Oidc.Server.Features.Tokens.EncodedJsonWebToken>
```

Inheritance [System\.Object](https://learn.microsoft.com/en-us/dotnet/api/system.object 'System\.Object') → EncodedJsonWebToken

Implements [System\.IEquatable&lt;](https://learn.microsoft.com/en-us/dotnet/api/system.iequatable-1 'System\.IEquatable\`1')[EncodedJsonWebToken](https://www.abblix.com/en/docs/api/abblix-oidc-server/Abblix.Oidc.Server.Features.Tokens.EncodedJsonWebToken 'Abblix\.Oidc\.Server\.Features\.Tokens\.EncodedJsonWebToken')[&gt;](https://learn.microsoft.com/en-us/dotnet/api/system.iequatable-1 'System\.IEquatable\`1')
### Constructors

## EncodedJsonWebToken\(JsonWebToken, string\) Constructor {#Abblix.Oidc.Server.Features.Tokens.EncodedJsonWebToken.EncodedJsonWebToken(Abblix.Jwt.JsonWebToken,string)}

Represents an encoded JSON Web Token \(JWT\) along with its decoded model representation\.

```csharp
public EncodedJsonWebToken(Abblix.Jwt.JsonWebToken Token, string EncodedJwt);
```
#### Parameters

###### `Token` [JsonWebToken](https://www.abblix.com/en/docs/api/abblix-jwt/Abblix.Jwt.JsonWebToken 'Abblix\.Jwt\.JsonWebToken') {#Abblix.Oidc.Server.Features.Tokens.EncodedJsonWebToken.EncodedJsonWebToken(Abblix.Jwt.JsonWebToken,string).Token}

The decoded model representation of the JWT\.

###### `EncodedJwt` [System\.String](https://learn.microsoft.com/en-us/dotnet/api/system.string 'System\.String') {#Abblix.Oidc.Server.Features.Tokens.EncodedJsonWebToken.EncodedJsonWebToken(Abblix.Jwt.JsonWebToken,string).EncodedJwt}

The encoded string form of the JWT\.
### Properties

## EncodedJsonWebToken\.EncodedJwt Property {#Abblix.Oidc.Server.Features.Tokens.EncodedJsonWebToken.EncodedJwt}

The encoded string form of the JWT\.

```csharp
public string EncodedJwt { get; init; }
```

#### Property Value
[System\.String](https://learn.microsoft.com/en-us/dotnet/api/system.string 'System\.String')

## EncodedJsonWebToken\.Token Property {#Abblix.Oidc.Server.Features.Tokens.EncodedJsonWebToken.Token}

The decoded model representation of the JWT\.

```csharp
public Abblix.Jwt.JsonWebToken Token { get; init; }
```

#### Property Value
[JsonWebToken](https://www.abblix.com/en/docs/api/abblix-jwt/Abblix.Jwt.JsonWebToken 'Abblix\.Jwt\.JsonWebToken')
