diff --git a/docs/EditOrgOption.md b/docs/EditOrgOption.md index b4dcd70..ba8b6d8 100644 --- a/docs/EditOrgOption.md +++ b/docs/EditOrgOption.md @@ -4,7 +4,7 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **description** | **String** | The description of the organization | [optional] -**email** | **String** | The email address of the organization | [optional] +**email** | **String** | The email address of the organization; use empty string to clear | [optional] **fullName** | **String** | The full display name of the organization | [optional] **location** | **String** | The location of the organization | [optional] **repoAdminChangeTeamAccess** | **Boolean** | Whether repository administrators can change team access | [optional] diff --git a/src/main/java/org/gitnex/tea4j/v2/models/EditOrgOption.java b/src/main/java/org/gitnex/tea4j/v2/models/EditOrgOption.java index 86f588f..8acaa27 100644 --- a/src/main/java/org/gitnex/tea4j/v2/models/EditOrgOption.java +++ b/src/main/java/org/gitnex/tea4j/v2/models/EditOrgOption.java @@ -119,11 +119,11 @@ public class EditOrgOption implements Serializable { } /** - * The email address of the organization + * The email address of the organization; use empty string to clear * * @return email */ - @Schema(description = "The email address of the organization") + @Schema(description = "The email address of the organization; use empty string to clear") public String getEmail() { return email; }