From ee1b487ef54bf9975dc8953d9bc99c5957ccb15d Mon Sep 17 00:00:00 2001 From: davidjumani Date: Fri, 20 Nov 2020 12:40:23 +0530 Subject: [PATCH] accountresponse: Fix domainpath description --- .../org/apache/cloudstack/api/response/AccountResponse.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/api/src/main/java/org/apache/cloudstack/api/response/AccountResponse.java b/api/src/main/java/org/apache/cloudstack/api/response/AccountResponse.java index e39aaca37676..d22ee52b5c09 100644 --- a/api/src/main/java/org/apache/cloudstack/api/response/AccountResponse.java +++ b/api/src/main/java/org/apache/cloudstack/api/response/AccountResponse.java @@ -55,15 +55,15 @@ public class AccountResponse extends BaseResponse implements ResourceLimitAndCou private String roleName; @SerializedName(ApiConstants.DOMAIN_ID) - @Param(description = "id of the Domain the account belongs too") + @Param(description = "id of the Domain the account belongs to") private String domainId; @SerializedName(ApiConstants.DOMAIN) - @Param(description = "name of the Domain the account belongs too") + @Param(description = "name of the Domain the account belongs to") private String domainName; @SerializedName(ApiConstants.DOMAIN_PATH) - @Param(description = "name of the Domain the account belongs too", since = "4.13") + @Param(description = "path of the Domain the account belongs to", since = "4.13") private String domainPath; @SerializedName(ApiConstants.DEFAULT_ZONE_ID)