Class KycSubmitParams
-
- All Implemented Interfaces:
-
com.dinari.api.core.Params
public final class KycSubmitParams implements Params
Submit KYC data directly, for partners that are provisioned to provide their own KYC data.
This feature is available for everyone in sandbox mode, and for specifically provisioned partners in production.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classKycSubmitParams.BuilderA builder for KycSubmitParams.
public final classKycSubmitParams.BodyInput parameters for providing KYC information for an
Entity.
-
Method Summary
Modifier and Type Method Description final Optional<String>entityId()final KycDatadata()KYC data for an Entity.final StringproviderName()Name of the KYC provider that provided the KYC information. final JsonField<KycData>_data()Returns the raw JSON value of data. final JsonField<String>_providerName()Returns the raw JSON value of providerName. final Map<String, JsonValue>_additionalBodyProperties()final Headers_additionalHeaders()Additional headers to send with the request. final QueryParams_additionalQueryParams()Additional query param to send with the request. final KycSubmitParams.BuildertoBuilder()final KycSubmitParams.Body_body()final String_pathParam(Integer index)Headers_headers()The full set of headers in the parameters, including both fixed and additional headers. QueryParams_queryParams()The full set of query params in the parameters, including both fixed and additional query params. Booleanequals(Object other)IntegerhashCode()StringtoString()final static KycSubmitParams.Builderbuilder()Returns a mutable builder for constructing an instance of KycSubmitParams. -
-
Method Detail
-
providerName
final String providerName()
Name of the KYC provider that provided the KYC information.
-
_data
final JsonField<KycData> _data()
Returns the raw JSON value of data.
Unlike data, this method doesn't throw if the JSON field has an unexpected type.
-
_providerName
final JsonField<String> _providerName()
Returns the raw JSON value of providerName.
Unlike providerName, this method doesn't throw if the JSON field has an unexpected type.
-
_additionalBodyProperties
final Map<String, JsonValue> _additionalBodyProperties()
-
_additionalHeaders
final Headers _additionalHeaders()
Additional headers to send with the request.
-
_additionalQueryParams
final QueryParams _additionalQueryParams()
Additional query param to send with the request.
-
toBuilder
final KycSubmitParams.Builder toBuilder()
-
_body
final KycSubmitParams.Body _body()
-
_pathParam
final String _pathParam(Integer index)
-
_headers
Headers _headers()
The full set of headers in the parameters, including both fixed and additional headers.
-
_queryParams
QueryParams _queryParams()
The full set of query params in the parameters, including both fixed and additional query params.
-
builder
final static KycSubmitParams.Builder builder()
Returns a mutable builder for constructing an instance of KycSubmitParams.
The following fields are required:
.data() .providerName()
-
-
-
-