001package ca.cdr.api.model.enm;
002
003/*
004 * #%L
005 * Smile CDR - CDR
006 * %%
007 * Copyright (C) 2016 - 2024 Smile CDR, Inc.
008 * %%
009 * All rights reserved.
010 * #L%
011 */
012
013public enum TransactionLogBodyTypeEnum {
014        /**
015         * DO NOT SORT
016         */
017        HL7V2_ER7,
018        FHIR_JSON,
019        FHIR_XML,
020
021        /**
022         * Body isn't the actual returned body, just a description of why this step failed
023         */
024        FAILURE_DESCRIPTION,
025
026        /**
027         * A processing message in markdown
028         */
029        MESSAGE_MARKDOWN,
030
031        /**
032         * Plain text
033         */
034        TEXT_PLAIN,
035
036        /**
037         * XML
038         */
039        XML,
040
041        /**
042         * A resource ID
043         */
044        RESOURCE_ID,
045
046        /**
047         * JSON
048         */
049        JSON,
050}