Class UsKycCheckData.KycMetadata.Builder
-
- All Implemented Interfaces:
public final class UsKycCheckData.KycMetadata.BuilderA builder for KycMetadata.
-
-
Method Summary
-
-
Method Detail
-
checkCompletedAt
final UsKycCheckData.KycMetadata.Builder checkCompletedAt(OffsetDateTime checkCompletedAt)
Completion datetime of KYC check.
-
checkCompletedAt
final UsKycCheckData.KycMetadata.Builder checkCompletedAt(JsonField<OffsetDateTime> checkCompletedAt)
Sets Builder.checkCompletedAt to an arbitrary JSON value.
You should usually call Builder.checkCompletedAt with a well-typed OffsetDateTime value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
checkInitiatedAt
final UsKycCheckData.KycMetadata.Builder checkInitiatedAt(OffsetDateTime checkInitiatedAt)
Start datetime of KYC check.
-
checkInitiatedAt
final UsKycCheckData.KycMetadata.Builder checkInitiatedAt(JsonField<OffsetDateTime> checkInitiatedAt)
Sets Builder.checkInitiatedAt to an arbitrary JSON value.
You should usually call Builder.checkInitiatedAt with a well-typed OffsetDateTime value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
ipAddress
final UsKycCheckData.KycMetadata.Builder ipAddress(String ipAddress)
IP address of applicant at time of KYC check.
-
ipAddress
final UsKycCheckData.KycMetadata.Builder ipAddress(JsonField<String> ipAddress)
Sets Builder.ipAddress to an arbitrary JSON value.
You should usually call Builder.ipAddress with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
refId
final UsKycCheckData.KycMetadata.Builder refId(String refId)
Your unique identifier for the KYC check.
-
refId
final UsKycCheckData.KycMetadata.Builder refId(JsonField<String> refId)
Sets Builder.refId to an arbitrary JSON value.
You should usually call Builder.refId with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final UsKycCheckData.KycMetadata.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final UsKycCheckData.KycMetadata.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final UsKycCheckData.KycMetadata.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final UsKycCheckData.KycMetadata.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final UsKycCheckData.KycMetadata.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final UsKycCheckData.KycMetadata build()
Returns an immutable instance of KycMetadata.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.checkCompletedAt() .checkInitiatedAt() .ipAddress() .refId()
-
-
-
-