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

## RevocationRequest Class

The transport\-bound counterpart of [RevocationRequest](https://www.abblix.com/en/docs/api/abblix-oidc-server/Abblix.Oidc.Server.Model.RevocationRequest 'Abblix\.Oidc\.Server\.Model\.RevocationRequest') for the token
revocation endpoint \(RFC 7009\)\. All bound properties, validation attributes and the
projection back onto the core model are generated from the core type\.

```csharp
public record RevocationRequest : System.IEquatable<Abblix.Oidc.Server.Mvc.Model.RevocationRequest>
```

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

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

## RevocationRequest\.Token Property {#Abblix.Oidc.Server.Mvc.Model.RevocationRequest.Token}

The `token` parameter \(RFC 7009 §2\.1\): the access token or refresh token string the client
is asking the authorization server to revoke\. Required\.

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

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

## RevocationRequest\.TokenTypeHint Property {#Abblix.Oidc.Server.Mvc.Model.RevocationRequest.TokenTypeHint}

The optional `token_type_hint` \(RFC 7009 §2\.1\) advising whether [Token](https://www.abblix.com/en/docs/api/abblix-oidc-server/Abblix.Oidc.Server.Model.RevocationRequest#Abblix.Oidc.Server.Model.RevocationRequest.Token 'Abblix\.Oidc\.Server\.Model\.RevocationRequest\.Token') is an
`access_token` or `refresh_token`, allowing the server to look it up faster\.

```csharp
public string? TokenTypeHint { get; init; }
```

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

## RevocationRequest\.Map\(\) Method {#Abblix.Oidc.Server.Mvc.Model.RevocationRequest.Map()}

Projects the transport\-bound model onto its core counterpart, copying every bound
parameter so the core pipeline operates on a transport\-agnostic shape\.

```csharp
public Abblix.Oidc.Server.Model.RevocationRequest Map();
```

#### Returns
[RevocationRequest](https://www.abblix.com/en/docs/api/abblix-oidc-server/Abblix.Oidc.Server.Model.RevocationRequest 'Abblix\.Oidc\.Server\.Model\.RevocationRequest')
### Operators

## RevocationRequest\.implicit operator RevocationRequest\(RevocationRequest\) Operator {#Abblix.Oidc.Server.Mvc.Model.RevocationRequest.op_ImplicitAbblix.Oidc.Server.Model.RevocationRequest(Abblix.Oidc.Server.Mvc.Model.RevocationRequest)}

Implicit form of [Map\(\)](https://www.abblix.com/en/docs/api/abblix-oidc-server-mvc/Abblix.Oidc.Server.Mvc.Model.RevocationRequest#Abblix.Oidc.Server.Mvc.Model.RevocationRequest.Map() 'Abblix\.Oidc\.Server\.Mvc\.Model\.RevocationRequest\.Map\(\)'), letting a bound model flow into any
core\-typed parameter or variable without an explicit call\.

```csharp
public static Abblix.Oidc.Server.Model.RevocationRequest implicit operator Abblix.Oidc.Server.Model.RevocationRequest(Abblix.Oidc.Server.Mvc.Model.RevocationRequest request);
```
#### Parameters

###### `request` [RevocationRequest](https://www.abblix.com/en/docs/api/abblix-oidc-server-mvc/Abblix.Oidc.Server.Mvc.Model.RevocationRequest 'Abblix\.Oidc\.Server\.Mvc\.Model\.RevocationRequest') {#Abblix.Oidc.Server.Mvc.Model.RevocationRequest.op_ImplicitAbblix.Oidc.Server.Model.RevocationRequest(Abblix.Oidc.Server.Mvc.Model.RevocationRequest).request}

#### Returns
[RevocationRequest](https://www.abblix.com/en/docs/api/abblix-oidc-server/Abblix.Oidc.Server.Model.RevocationRequest 'Abblix\.Oidc\.Server\.Model\.RevocationRequest')
