All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mindee.parsing.custom.lineitems.LineItems Maven / Gradle / Ivy

The newest version!
package com.mindee.parsing.custom.lineitems;

import java.util.List;
import lombok.Getter;


/**
 * Line items details.
 */
@Getter
public class LineItems {
  private List rows;

  /**
   * @param rows
   */
  public LineItems(List rows) {
    this.rows = rows;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy