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

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

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

public class GetTraceDetailsInput extends PaginationInfo {

  String traceId;

  public GetTraceDetailsInput(String traceId) throws IllegalArgumentException {
    if (traceId == null) {
      throw new IllegalArgumentException("formId cannot be null in AppendLinkInput");
    }
    this.traceId = traceId;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy