Class KycInfo.Baseline.Builder
-
- All Implemented Interfaces:
public final class KycInfo.Baseline.BuilderA builder for Baseline.
-
-
Method Summary
-
-
Method Detail
-
id
final KycInfo.Baseline.Builder id(String id)
ID of the KYC check.
-
id
final KycInfo.Baseline.Builder id(JsonField<String> id)
Sets Builder.id to an arbitrary JSON value.
You should usually call Builder.id with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
status
final KycInfo.Baseline.Builder status(KycStatus status)
KYC check status.
-
status
final KycInfo.Baseline.Builder status(JsonField<KycStatus> status)
Sets Builder.status to an arbitrary JSON value.
You should usually call Builder.status with a well-typed KycStatus value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
checkedDt
final KycInfo.Baseline.Builder checkedDt(OffsetDateTime checkedDt)
Datetime when the KYC was last checked. ISO 8601 timestamp.
-
checkedDt
final KycInfo.Baseline.Builder checkedDt(Optional<OffsetDateTime> checkedDt)
Alias for calling Builder.checkedDt with
checkedDt.orElse(null).
-
checkedDt
final KycInfo.Baseline.Builder checkedDt(JsonField<OffsetDateTime> checkedDt)
Sets Builder.checkedDt to an arbitrary JSON value.
You should usually call Builder.checkedDt with a well-typed OffsetDateTime value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
data
final KycInfo.Baseline.Builder data(BaselineKycCheckData data)
KYC data for an
Entityin the BASELINE jurisdiction.
-
data
final KycInfo.Baseline.Builder data(Optional<BaselineKycCheckData> data)
Alias for calling Builder.data with
data.orElse(null).
-
data
final KycInfo.Baseline.Builder data(JsonField<BaselineKycCheckData> data)
Sets Builder.data to an arbitrary JSON value.
You should usually call Builder.data with a well-typed BaselineKycCheckData value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
jurisdiction
final KycInfo.Baseline.Builder jurisdiction(KycInfo.Baseline.Jurisdiction jurisdiction)
Jurisdiction of the KYC check.
-
jurisdiction
final KycInfo.Baseline.Builder jurisdiction(JsonField<KycInfo.Baseline.Jurisdiction> jurisdiction)
Sets Builder.jurisdiction to an arbitrary JSON value.
You should usually call Builder.jurisdiction with a well-typed Jurisdiction value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final KycInfo.Baseline.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final KycInfo.Baseline.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final KycInfo.Baseline.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final KycInfo.Baseline.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final KycInfo.Baseline.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final KycInfo.Baseline build()
Returns an immutable instance of Baseline.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.id() .status()
-
-
-
-