Created
February 2, 2022 12:09
-
-
Save MrStahlfelge/4cace9cf4c67b71bd7efeeb08cc64809 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package org.ergoplatform.ergopay; | |
import com.fasterxml.jackson.annotation.JsonInclude; | |
public class ErgoPayResponse { | |
@JsonInclude(JsonInclude.Include.NON_NULL) | |
public String message; | |
@JsonInclude(JsonInclude.Include.NON_NULL) | |
public Severity messageSeverity; | |
@JsonInclude(JsonInclude.Include.NON_NULL) | |
public String address; | |
@JsonInclude(JsonInclude.Include.NON_NULL) | |
public String reducedTx; | |
@JsonInclude(JsonInclude.Include.NON_NULL) | |
public String replyTo; | |
enum Severity { NONE, INFORMATION, WARNING, ERROR } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment