Class KycInfo
-
- All Implemented Interfaces:
public final class KycInfoKYC information for an
Entityin the baseline jurisdiction.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interfaceKycInfo.VisitorAn interface that defines how to map each variant of KycInfo to a value of type T.
public final classKycInfo.BaselineKYC information for an
Entityin the baseline jurisdiction.public final classKycInfo.UsKYC information for an
Entityin the US jurisdiction.
-
Method Summary
Modifier and Type Method Description final Optional<KycInfo.Baseline>baseline()KYC information for an Entityin the baseline jurisdiction.final Optional<KycInfo.Us>us()KYC information for an Entityin the US jurisdiction.final BooleanisBaseline()final BooleanisUs()final KycInfo.BaselineasBaseline()KYC information for an Entityin the baseline jurisdiction.final KycInfo.UsasUs()KYC information for an Entityin the US jurisdiction.final Optional<JsonValue>_json()final <T extends Any> Taccept(KycInfo.Visitor<T> visitor)final KycInfovalidate()final BooleanisValid()Booleanequals(Object other)IntegerhashCode()StringtoString()final static KycInfoofBaseline(KycInfo.Baseline baseline)KYC information for an Entityin the baseline jurisdiction.final static KycInfoofUs(KycInfo.Us us)KYC information for an Entityin the US jurisdiction.-
-
Method Detail
-
baseline
final Optional<KycInfo.Baseline> baseline()
KYC information for an
Entityin the baseline jurisdiction.
-
us
final Optional<KycInfo.Us> us()
KYC information for an
Entityin the US jurisdiction.
-
isBaseline
final Boolean isBaseline()
-
asBaseline
final KycInfo.Baseline asBaseline()
KYC information for an
Entityin the baseline jurisdiction.
-
asUs
final KycInfo.Us asUs()
KYC information for an
Entityin the US jurisdiction.
-
accept
final <T extends Any> T accept(KycInfo.Visitor<T> visitor)
-
ofBaseline
final static KycInfo ofBaseline(KycInfo.Baseline baseline)
KYC information for an
Entityin the baseline jurisdiction.
-
ofUs
final static KycInfo ofUs(KycInfo.Us us)
KYC information for an
Entityin the US jurisdiction.
-
-
-
-