Package com.hellosign.openapi.model
Class TemplateAddUserRequest
- java.lang.Object
-
- com.hellosign.openapi.model.TemplateAddUserRequest
-
@Generated("org.openapitools.codegen.languages.JavaClientCodegen") public class TemplateAddUserRequest extends java.lang.Object
TemplateAddUserRequest
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
JSON_PROPERTY_ACCOUNT_ID
static java.lang.String
JSON_PROPERTY_EMAIL_ADDRESS
static java.lang.String
JSON_PROPERTY_SKIP_NOTIFICATION
-
Constructor Summary
Constructors Constructor Description TemplateAddUserRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TemplateAddUserRequest
accountId(java.lang.String accountId)
java.util.Map<java.lang.String,java.lang.Object>
createFormData()
TemplateAddUserRequest
emailAddress(java.lang.String emailAddress)
boolean
equals(java.lang.Object o)
Return true if this TemplateAddUserRequest object is equal to o.java.lang.String
getAccountId()
The id of the Account to give access to the Template.java.lang.String
getEmailAddress()
The email address of the Account to give access to the Template.java.lang.Boolean
getSkipNotification()
If set to `true`, the user does not receive an email notification when a template has been shared with them.int
hashCode()
void
setAccountId(java.lang.String accountId)
void
setEmailAddress(java.lang.String emailAddress)
void
setSkipNotification(java.lang.Boolean skipNotification)
TemplateAddUserRequest
skipNotification(java.lang.Boolean skipNotification)
java.lang.String
toString()
-
-
-
Field Detail
-
JSON_PROPERTY_ACCOUNT_ID
public static final java.lang.String JSON_PROPERTY_ACCOUNT_ID
- See Also:
- Constant Field Values
-
JSON_PROPERTY_EMAIL_ADDRESS
public static final java.lang.String JSON_PROPERTY_EMAIL_ADDRESS
- See Also:
- Constant Field Values
-
JSON_PROPERTY_SKIP_NOTIFICATION
public static final java.lang.String JSON_PROPERTY_SKIP_NOTIFICATION
- See Also:
- Constant Field Values
-
-
Method Detail
-
accountId
public TemplateAddUserRequest accountId(java.lang.String accountId)
-
getAccountId
@Nullable public java.lang.String getAccountId()
The id of the Account to give access to the Template. <b>Note</b> The account id prevails if email address is also provided.- Returns:
- accountId
-
setAccountId
public void setAccountId(java.lang.String accountId)
-
emailAddress
public TemplateAddUserRequest emailAddress(java.lang.String emailAddress)
-
getEmailAddress
@Nullable public java.lang.String getEmailAddress()
The email address of the Account to give access to the Template. <b>Note</b> The account id prevails if it is also provided.- Returns:
- emailAddress
-
setEmailAddress
public void setEmailAddress(java.lang.String emailAddress)
-
skipNotification
public TemplateAddUserRequest skipNotification(java.lang.Boolean skipNotification)
-
getSkipNotification
@Nullable public java.lang.Boolean getSkipNotification()
If set to `true`, the user does not receive an email notification when a template has been shared with them. Defaults to `false`.- Returns:
- skipNotification
-
setSkipNotification
public void setSkipNotification(java.lang.Boolean skipNotification)
-
equals
public boolean equals(java.lang.Object o)
Return true if this TemplateAddUserRequest 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
-
-