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

com.stratumn.sdk.model.trace.TracesState Maven / Gradle / Ivy

There is a newer version: 0.0.8
Show newest version
package com.stratumn.sdk.model.trace;

import java.util.ArrayList;
import java.util.List;

public class TracesState {

  List> traces;

  public TracesState() {
    this.traces = new ArrayList>();
  }

  public TracesState(List> traces) {
    this.traces = traces;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy