Sha256: 5ff628b215529c7254f95a14b0c2a0488a9e2d01c3a338b16a54c677e48bd55a
Contents?: true
Size: 1.3 KB
Versions: 4
Compression:
Stored size: 1.3 KB
Contents
# Plaid::JWKPublicKey ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **alg** | **String** | The alg member identifies the cryptographic algorithm family used with the key. | [optional] | | **crv** | **String** | The crv member identifies the cryptographic curve used with the key. | [optional] | | **kid** | **String** | The kid (Key ID) member can be used to match a specific key. This can be used, for instance, to choose among a set of keys within the JWK during key rollover. | [optional] | | **kty** | **String** | The kty (key type) parameter identifies the cryptographic algorithm family used with the key, such as RSA or EC. | [optional] | | **use** | **String** | The use (public key use) parameter identifies the intended use of the public key. | [optional] | | **x** | **String** | The x member contains the x coordinate for the elliptic curve point. | [optional] | | **y** | **String** | The y member contains the y coordinate for the elliptic curve point. | [optional] | | **created_at** | **Integer** | | [optional] | | **expired_at** | **Integer** | | [optional] | ## Example ```ruby require 'plaid' instance = Plaid::JWKPublicKey.new( alg: null, crv: null, kid: null, kty: null, use: null, x: null, y: null, created_at: null, expired_at: null ) ```
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
plaid-14.0.0.beta.4 | docs/JWKPublicKey.md |
plaid-14.0.0.beta.3 | docs/JWKPublicKey.md |
plaid-14.0.0.beta.2 | docs/JWKPublicKey.md |
plaid-14.0.0.beta.1 | docs/JWKPublicKey.md |