Skip to content

Commit

Permalink
Merge pull request #29 from bmrvilela/master
Browse files Browse the repository at this point in the history
Priority API: CxMnoInstalled property changed to nullable
  • Loading branch information
portilha authored Jul 18, 2024
2 parents 01cc90e + adf5ed8 commit 2633104
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public partial class CxWSResponseScanResultsPriority : cxPriorityWebService.CxWS

private bool SastRemediationEnabledField;

private bool CxMnoInstalledField;
private bool? CxMnoInstalledField;

private int? TotalResultsCountField;

Expand Down Expand Up @@ -91,8 +91,8 @@ public bool SastRemediationEnabled
}
}

[System.Runtime.Serialization.DataMemberAttribute(IsRequired=true, Order=2)]
public bool CxMnoInstalled
[System.Runtime.Serialization.DataMemberAttribute(IsRequired=false, Order=2)]
public bool? CxMnoInstalled
{
get
{
Expand Down

0 comments on commit 2633104

Please sign in to comment.