001package org.galaxyproject.gxformat2.v19_09;
002
003import org.galaxyproject.gxformat2.v19_09.utils.Savable;
004
005/**
006 * Auto-generated interface for <I>https://galaxyproject.org/gxformat2/v19_09#Report</I><br>
007 * This interface is implemented by {@link ReportImpl}<br>
008 *
009 * <BLOCKQUOTE>
010 *
011 * Definition of an invocation report for this workflow. Currently the only field is 'markdown'.
012 *
013 * </BLOCKQUOTE>
014 */
015public interface Report extends Savable {
016  /**
017   * Getter for property <I>https://galaxyproject.org/gxformat2/v19_09#Report/markdown</I><br>
018   *
019   * <BLOCKQUOTE>
020   *
021   * Galaxy flavored Markdown to define an invocation report. *
022   *
023   * </BLOCKQUOTE>
024   */
025  String getMarkdown();
026}