Class TrustTokenParams
Determines what type of Trust Token operation is executed and depending on the type, some additional parameters. The values are specified in third_party/blink/renderer/core/fetch/trust_token.idl.
public sealed class TrustTokenParams
- Inheritance
-
TrustTokenParams
- Inherited Members
Properties
Issuers
Origins of issuers from whom to request tokens or redemption records.
[JsonPropertyName("issuers")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string[]? Issuers { get; set; }
Property Value
- string[]
Operation
operation
[JsonPropertyName("operation")]
public TrustTokenOperationType Operation { get; set; }
Property Value
RefreshPolicy
Only set for "token-redemption" operation and determine whether to request a fresh SRR or use a still valid cached SRR.
[JsonPropertyName("refreshPolicy")]
public TrustTokenParamsRefreshPolicyValues RefreshPolicy { get; set; }