All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.lacunasoftware.signer.javaclient.requests.SendElectronicSignatureAuthenticationRequest Maven / Gradle / Ivy

package com.lacunasoftware.signer.javaclient.requests;

import com.google.gson.annotations.SerializedName;

import java.util.UUID;

public class SendElectronicSignatureAuthenticationRequest {

	@SerializedName("flowActionId")
	private UUID flowActionId;

	@SerializedName("resend")
	private boolean resend;

	public UUID getFlowActionId() {
		return flowActionId;
	}

	public void setFlowActionId(UUID flowActionId) {
		this.flowActionId = flowActionId;
	}

	public boolean isResend() {
		return resend;
	}

	public void setResend(boolean resend) {
		this.resend = resend;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy