001package com.box.sdk;
002
003import java.util.List;
004
005
006/**
007 * Box Sign Template additional information on which fields are required.
008 */
009public class BoxSignTemplateAdditionalInfoRequired {
010    private final List<List<String>> signers;
011
012    /**
013     * Constructs a BoxSignTemplateAdditionalInfoRequired object with the provided list of signers.
014     */
015    public BoxSignTemplateAdditionalInfoRequired(List<List<String>> signers) {
016        this.signers = signers;
017    }
018
019    /**
020     * Gets the required signer fields.
021     *
022     * @return the required signer fields.
023     */
024    public List<List<String>> getSigners() {
025        return this.signers;
026    }
027}