Class APIV1POSTTransactionSignResponse
- java.lang.Object
-
- com.algorand.algosdk.kmd.client.model.APIV1POSTTransactionSignResponse
-
public class APIV1POSTTransactionSignResponse extends Object
APIV1POSTTransactionSignResponse is the repsonse to `POST /v1/transaction/sign` friendly:SignTransactionResponse
-
-
Constructor Summary
Constructors Constructor Description APIV1POSTTransactionSignResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
APIV1POSTTransactionSignResponse
error(Boolean error)
String
getMessage()
Get messagebyte[]
getSignedTransaction()
Get signedTransactionint
hashCode()
Boolean
isError()
Get errorAPIV1POSTTransactionSignResponse
message(String message)
void
setError(Boolean error)
void
setMessage(String message)
void
setSignedTransaction(byte[] signedTransaction)
APIV1POSTTransactionSignResponse
signedTransaction(byte[] signedTransaction)
String
toString()
-
-
-
Method Detail
-
error
public APIV1POSTTransactionSignResponse error(Boolean error)
-
isError
public Boolean isError()
Get error- Returns:
- error
-
setError
public void setError(Boolean error)
-
message
public APIV1POSTTransactionSignResponse message(String message)
-
getMessage
public String getMessage()
Get message- Returns:
- message
-
setMessage
public void setMessage(String message)
-
signedTransaction
public APIV1POSTTransactionSignResponse signedTransaction(byte[] signedTransaction)
-
getSignedTransaction
public byte[] getSignedTransaction()
Get signedTransaction- Returns:
- signedTransaction
-
setSignedTransaction
public void setSignedTransaction(byte[] signedTransaction)
-
-