Package com.hellosign.openapi.model
Class SignatureRequestResponseDataBase
- java.lang.Object
-
- com.hellosign.openapi.model.SignatureRequestResponseDataBase
-
- Direct Known Subclasses:
SignatureRequestResponseDataValueCheckbox
,SignatureRequestResponseDataValueCheckboxMerge
,SignatureRequestResponseDataValueDateSigned
,SignatureRequestResponseDataValueDropdown
,SignatureRequestResponseDataValueInitials
,SignatureRequestResponseDataValueRadio
,SignatureRequestResponseDataValueSignature
,SignatureRequestResponseDataValueText
,SignatureRequestResponseDataValueTextMerge
@Generated("org.openapitools.codegen.languages.JavaClientCodegen") public class SignatureRequestResponseDataBase extends java.lang.Object
An array of form field objects containing the name, value, and type of each textbox or checkmark field filled in by the signers.
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
JSON_PROPERTY_API_ID
static java.lang.String
JSON_PROPERTY_NAME
static java.lang.String
JSON_PROPERTY_REQUIRED
static java.lang.String
JSON_PROPERTY_SIGNATURE_ID
static java.lang.String
JSON_PROPERTY_TYPE
-
Constructor Summary
Constructors Constructor Description SignatureRequestResponseDataBase()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SignatureRequestResponseDataBase
apiId(java.lang.String apiId)
java.util.Map<java.lang.String,java.lang.Object>
createFormData()
boolean
equals(java.lang.Object o)
Return true if this SignatureRequestResponseDataBase object is equal to o.java.lang.String
getApiId()
The unique ID for this field.java.lang.String
getName()
The name of the form field.java.lang.Boolean
getRequired()
A boolean value denoting if this field is required.java.lang.String
getSignatureId()
The ID of the signature to which this response is linked.java.lang.String
getType()
Get typeint
hashCode()
SignatureRequestResponseDataBase
name(java.lang.String name)
SignatureRequestResponseDataBase
required(java.lang.Boolean required)
void
setApiId(java.lang.String apiId)
void
setName(java.lang.String name)
void
setRequired(java.lang.Boolean required)
void
setSignatureId(java.lang.String signatureId)
void
setType(java.lang.String type)
SignatureRequestResponseDataBase
signatureId(java.lang.String signatureId)
java.lang.String
toString()
SignatureRequestResponseDataBase
type(java.lang.String type)
-
-
-
Field Detail
-
JSON_PROPERTY_API_ID
public static final java.lang.String JSON_PROPERTY_API_ID
- See Also:
- Constant Field Values
-
JSON_PROPERTY_SIGNATURE_ID
public static final java.lang.String JSON_PROPERTY_SIGNATURE_ID
- See Also:
- Constant Field Values
-
JSON_PROPERTY_NAME
public static final java.lang.String JSON_PROPERTY_NAME
- See Also:
- Constant Field Values
-
JSON_PROPERTY_REQUIRED
public static final java.lang.String JSON_PROPERTY_REQUIRED
- See Also:
- Constant Field Values
-
JSON_PROPERTY_TYPE
public static final java.lang.String JSON_PROPERTY_TYPE
- See Also:
- Constant Field Values
-
-
Method Detail
-
apiId
public SignatureRequestResponseDataBase apiId(java.lang.String apiId)
-
getApiId
@Nullable public java.lang.String getApiId()
The unique ID for this field.- Returns:
- apiId
-
setApiId
public void setApiId(java.lang.String apiId)
-
signatureId
public SignatureRequestResponseDataBase signatureId(java.lang.String signatureId)
-
getSignatureId
@Nullable public java.lang.String getSignatureId()
The ID of the signature to which this response is linked.- Returns:
- signatureId
-
setSignatureId
public void setSignatureId(java.lang.String signatureId)
-
name
public SignatureRequestResponseDataBase name(java.lang.String name)
-
getName
@Nullable public java.lang.String getName()
The name of the form field.- Returns:
- name
-
setName
public void setName(java.lang.String name)
-
required
public SignatureRequestResponseDataBase required(java.lang.Boolean required)
-
getRequired
@Nullable public java.lang.Boolean getRequired()
A boolean value denoting if this field is required.- Returns:
- required
-
setRequired
public void setRequired(java.lang.Boolean required)
-
type
public SignatureRequestResponseDataBase type(java.lang.String type)
-
getType
@Nullable public java.lang.String getType()
Get type- Returns:
- type
-
setType
public void setType(java.lang.String type)
-
equals
public boolean equals(java.lang.Object o)
Return true if this SignatureRequestResponseDataBase object is equal to o.- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
createFormData
public java.util.Map<java.lang.String,java.lang.Object> createFormData() throws ApiException
- Throws:
ApiException
-
-