Skip to content
Merged
Show file tree
Hide file tree
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 @@ -22,7 +22,7 @@ public class ServicePrincipalBase {
* whether or not the service principal account is enabled.
*/
@JsonProperty(value = "accountEnabled")
private String accountEnabled;
private Boolean accountEnabled;

/**
* Specifies whether an AppRoleAssignment to a user or group is required
Expand Down Expand Up @@ -62,7 +62,7 @@ public class ServicePrincipalBase {
*
* @return the accountEnabled value
*/
public String accountEnabled() {
public Boolean accountEnabled() {
return this.accountEnabled;
}

Expand All @@ -72,7 +72,7 @@ public String accountEnabled() {
* @param accountEnabled the accountEnabled value to set
* @return the ServicePrincipalBase object itself.
*/
public ServicePrincipalBase withAccountEnabled(String accountEnabled) {
public ServicePrincipalBase withAccountEnabled(Boolean accountEnabled) {
this.accountEnabled = accountEnabled;
return this;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class ServicePrincipalInner extends DirectoryObjectInner {
* whether or not the service principal account is enabled.
*/
@JsonProperty(value = "accountEnabled")
private String accountEnabled;
private Boolean accountEnabled;

/**
* alternative names.
Expand Down Expand Up @@ -159,7 +159,7 @@ public class ServicePrincipalInner extends DirectoryObjectInner {
*
* @return the accountEnabled value
*/
public String accountEnabled() {
public Boolean accountEnabled() {
return this.accountEnabled;
}

Expand All @@ -169,7 +169,7 @@ public String accountEnabled() {
* @param accountEnabled the accountEnabled value to set
* @return the ServicePrincipalInner object itself.
*/
public ServicePrincipalInner withAccountEnabled(String accountEnabled) {
public ServicePrincipalInner withAccountEnabled(Boolean accountEnabled) {
this.accountEnabled = accountEnabled;
return this;
}
Expand Down