Class KycInfo.Builder
-
- All Implemented Interfaces:
public final class KycInfo.BuilderA builder for KycInfo.
-
-
Method Summary
-
-
Method Detail
-
id
final KycInfo.Builder id(String id)
ID of the KYC check.
-
id
final KycInfo.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.Builder status(KycInfo.Status status)
KYC check status.
-
status
final KycInfo.Builder status(JsonField<KycInfo.Status> status)
Sets Builder.status to an arbitrary JSON value.
You should usually call Builder.status with a well-typed Status value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
checkedDt
final KycInfo.Builder checkedDt(OffsetDateTime checkedDt)
Datetime when the KYC was last checked. ISO 8601 timestamp.
-
checkedDt
final KycInfo.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.Builder data(KycData data)
KYC data for an
Entity.
-
data
final KycInfo.Builder data(JsonField<KycData> data)
Sets Builder.data to an arbitrary JSON value.
You should usually call Builder.data with a well-typed KycData value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final KycInfo.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final KycInfo.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final KycInfo.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final KycInfo.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final KycInfo.Builder removeAllAdditionalProperties(Set<String> keys)
-
-
-
-