Package web5.sdk.vc.pex
Class SubmissionRequirement
-
- All Implemented Interfaces:
public final class SubmissionRequirementRepresents a submission requirement, which defines how input descriptors must be satisfied.
-
-
Field Summary
Fields Modifier and Type Field Description private final SubmissionRequirementRuleruleprivate final Stringfromprivate final List<SubmissionRequirement>fromNestedprivate final Stringnameprivate final Stringpurposeprivate final Integercountprivate final Integerminprivate final Integermax
-
Constructor Summary
Constructors Constructor Description SubmissionRequirement(SubmissionRequirementRule rule, String from, List<SubmissionRequirement> fromNested, String name, String purpose, Integer count, Integer min, Integer max)
-
Method Summary
Modifier and Type Method Description final SubmissionRequirementRulegetRule()The rule that defines how input descriptors must be selected (e.g., All or Pick). final StringgetFrom()The source of the input descriptors (optional). final List<SubmissionRequirement>getFromNested()A nested list of submission requirements (optional). final StringgetName()The name of the submission requirement (optional). final StringgetPurpose()The purpose of the submission requirement (optional). final IntegergetCount()The exact number of input descriptors required (optional). final IntegergetMin()The minimum number of input descriptors required (optional). final IntegergetMax()The maximum number of input descriptors allowed (optional). -
-
Constructor Detail
-
SubmissionRequirement
SubmissionRequirement(SubmissionRequirementRule rule, String from, List<SubmissionRequirement> fromNested, String name, String purpose, Integer count, Integer min, Integer max)
-
-
Method Detail
-
getRule
final SubmissionRequirementRule getRule()
The rule that defines how input descriptors must be selected (e.g., All or Pick).
-
getFromNested
final List<SubmissionRequirement> getFromNested()
A nested list of submission requirements (optional).
-
getPurpose
final String getPurpose()
The purpose of the submission requirement (optional).
-
-
-
-