com.blockchyp.client.dto.ISignatureRequest 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.
/**
* Copyright 2019 BlockChyp, Inc. All rights reserved. Use of this code is governed by a
* license that can be found in the LICENSE file.
*
* This file was generated automatically. Changes to this file will be lost every time the
* code is regenerated.
*/
package com.blockchyp.client.dto;
import com.blockchyp.client.dto.SignatureFormat;
/**
* A request for customer signature data.
*/
public interface ISignatureRequest {
String getSigFile();
SignatureFormat getSigFormat();
int getSigWidth();
boolean isDisableSignature();
}