accountresponse: Fix domainpath description (#4487)

This commit is contained in:
davidjumani 2020-11-20 13:58:06 +05:30 committed by GitHub
parent 1398dfff65
commit 584fc3a338
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -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)