com.github.revenuemonster.model.Signature Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of RevenueMonsterOpenAPI Show documentation
Show all versions of RevenueMonsterOpenAPI Show documentation
This is an Java SDK that maps some of the RESTful methods of Open API that are documented at doc.revenuemonster.my
The newest version!
package com.github.revenuemonster.model;
public class Signature {
public class GenerateSignatureResult
{
public String data;
public String sequenceData;
public String signature;
public Error error;
}
public class VerifySignatureResult
{
public Boolean isValid;
public Error error;
}
public class GenerateSignatureRequestData
{
public Object data;
public String method;
public String nonceStr;
public String privateKey;
public String requestUrl;
public String signType;
public String timestamp;
}
public class VerifySignatureRequestData
{
public Object data;
public String method;
public String nonceStr;
public String publicKey;
public String requestUrl;
public String signType;
public String timestamp;
public String signature;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy