Package com.stripe.param.v2.iam
Class ApiKeyRotateParams.PublicKey.PemKey.Builder
java.lang.Object
com.stripe.param.v2.iam.ApiKeyRotateParams.PublicKey.PemKey.Builder
- Enclosing class:
- ApiKeyRotateParams.PublicKey.PemKey
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbuild()Finalize and obtain parameter instance from this builder.putAllExtraParam(Map<String, Object> map) Add all map key/value pairs to `extraParams` map.putExtraParam(String key, Object value) Add a key/value pair to `extraParams` map.setAlgorithm(String algorithm) Required. The encryption algorithm used with this key (e.g., RSA).Required. The PEM-encoded public key data.
-
Constructor Details
-
Builder
public Builder()
-
-
Method Details
-
build
Finalize and obtain parameter instance from this builder. -
setAlgorithm
Required. The encryption algorithm used with this key (e.g., RSA). -
setData
Required. The PEM-encoded public key data. Newlines are required between header/footer and body, and optional within the body. -
putExtraParam
Add a key/value pair to `extraParams` map. A map is initialized for the first `put/putAll` call, and subsequent calls add additional key/value pairs to the original map. SeeApiKeyRotateParams.PublicKey.PemKey.extraParamsfor the field documentation. -
putAllExtraParam
Add all map key/value pairs to `extraParams` map. A map is initialized for the first `put/putAll` call, and subsequent calls add additional key/value pairs to the original map. SeeApiKeyRotateParams.PublicKey.PemKey.extraParamsfor the field documentation.
-