com.blockchyp.client.dto.SignatureFormat Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of blockchyp-java Show documentation
Show all versions of blockchyp-java Show documentation
This is the recommended means for Java developers to access the BlockChyp gateway and BlockChyp terminals.
package com.blockchyp.client.dto;
import com.fasterxml.jackson.annotation.JsonValue;
public enum SignatureFormat {
NONE(""),
PNG("png"),
JPG("jpg"),
GIF("gif");
private final String code;
private SignatureFormat(String code) {
this.code = code;
}
@JsonValue
public String getCode() {
return this.code;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy