Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,10 @@ public class Support {
public Support() {}

/**
* The support email address of the legal entity.
* The support email address of the legal entity. Required if you have a platform setup.
*
* @param email The support email address of the legal entity.
* @param email The support email address of the legal entity. Required if you have a platform
* setup.
* @return the current {@code Support} instance, allowing for method chaining
*/
public Support email(String email) {
Expand All @@ -55,9 +56,10 @@ public Support email(String email) {
}

/**
* The support email address of the legal entity.
* The support email address of the legal entity. Required if you have a platform setup.
*
* @return email The support email address of the legal entity.
* @return email The support email address of the legal entity. Required if you have a platform
* setup.
*/
@JsonProperty(JSON_PROPERTY_EMAIL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
Expand All @@ -66,9 +68,10 @@ public String getEmail() {
}

/**
* The support email address of the legal entity.
* The support email address of the legal entity. Required if you have a platform setup.
*
* @param email The support email address of the legal entity.
* @param email The support email address of the legal entity. Required if you have a platform
* setup.
*/
@JsonProperty(JSON_PROPERTY_EMAIL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
Expand Down