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